/* README page specific styles */
.readme-main {
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 15px 0 15px;
    zoom: 0.85;
}

.readme-container {
    background: rgba(25, 28, 35, 0.3);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin: 1rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 160, 247, 0.1);
}

.readme-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(99, 160, 247, 0.2);
}

.shield-badge {
    margin-bottom: 0.8rem;
    border-radius: 4px;
    height: 20px;
}

.readme-header h1 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0.5rem 0;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.readme-logo {
    margin: 0.8rem 0;
}

.readme-logo img {
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.readme-intro {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--text-color);
    opacity: 0.9;
    max-width: 1200px;
    margin: 0 auto;
}

.readme-content {
    line-height: 1.7;
}

.readme-section {
    margin-bottom: 1.5rem;
}

.readme-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--highlight-color);
    border-bottom: 2px solid var(--highlight-color);
    padding-bottom: 0.2rem;
}

.readme-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1rem 0 0.6rem 0;
    color: var(--text-color);
}

.readme-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0.8rem 0 0.5rem 0;
    color: var(--text-color);
}

.readme-section p {
    margin-bottom: 0.6rem;
    color: var(--text-color);
    opacity: 0.9;
    font-size: 0.9rem;
    line-height: 1.4;
}

.readme-section ul, .readme-section ol {
    margin: 0.6rem 0;
    padding-left: 1.5rem;
}

.readme-section li {
    margin-bottom: 0.3rem;
    color: var(--text-color);
    opacity: 0.9;
    font-size: 0.9rem;
    line-height: 1.4;
}

.readme-section li strong {
    color: var(--highlight-color);
}

.readme-section a {
    color: var(--highlight-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.readme-section a:hover {
    border-bottom-color: var(--highlight-color);
}

.note {
    background: rgba(99, 160, 247, 0.1);
    border-left: 4px solid var(--highlight-color);
    padding: 0.8rem 1rem;
    margin: 0.8rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-style: italic;
    font-size: 0.9rem;
}

.install-note {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

code {
    background: rgba(25, 28, 35, 0.8);
    color: #ffd700;
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.8em;
}

pre {
    background: rgba(25, 28, 35, 0.8);
    border: 1px solid rgba(99, 160, 247, 0.2);
    border-radius: var(--border-radius);
    padding: 0.8rem;
    margin: 0.6rem 0;
    overflow-x: auto;
    line-height: 1.2;
    font-size: 0.75rem;
}

pre code {
    background: none;
    padding: 0;
    color: #e6e6e6;
}

/* Troubleshooting table styles */
.troubleshooting-table {
    border: 1px solid rgba(99, 160, 247, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin: 1rem 0;
}

.table-row {
    display: flex;
    border-bottom: 1px solid rgba(99, 160, 247, 0.1);
}

.table-row:last-child {
    border-bottom: none;
}

.table-header {
    background: rgba(99, 160, 247, 0.1);
    font-weight: 600;
}

.table-cell {
    flex: 1;
    padding: 0.6rem;
    border-right: 1px solid rgba(99, 160, 247, 0.1);
    font-size: 0.85rem;
    line-height: 1.3;
}

.table-cell:last-child {
    border-right: none;
}

.table-cell:first-child {
    flex: 0 0 30%;
    font-weight: 500;
}

/* Navigation link styles */
.nav-link {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
    font-weight: 500;
    margin-right: 1rem;
}

.nav-link:hover {
    opacity: 1;
    color: var(--highlight-color);
}

/* Responsive design */
@media (max-width: 768px) {
    .readme-container {
        margin: 1rem 0;
        padding: 1.5rem;
    }
    
    .readme-header h1 {
        font-size: 2.5rem;
    }
    
    .readme-intro {
        font-size: 1.1rem;
    }
    
    .readme-section h2 {
        font-size: 1.5rem;
    }
    
    .readme-section h3 {
        font-size: 1.3rem;
    }
    
    .table-row {
        flex-direction: column;
    }
    
    .table-cell {
        border-right: none;
        border-bottom: 1px solid rgba(99, 160, 247, 0.1);
    }
    
    .table-cell:last-child {
        border-bottom: none;
    }
    
    pre {
        font-size: 0.9rem;
        padding: 1rem;
    }
    
    .readme-section ul, .readme-section ol {
        padding-left: 1.5rem;
    }
} 