/* Quick Start Guide specific styles */

/* --- Content and layout styles --- */
.content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.guide-content {
    margin-bottom: 40px;
    padding-bottom: 30px;
}

.page-header {
    margin-bottom: 30px;
    text-align: center;
    padding-top: 110px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #0066cc;
}

.meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

/* Step styling */
.step {
    margin-bottom: 40px;
}

.step h3 {
    color: #0066cc;
    margin: 25px 0 15px;
    font-size: 1.4rem;
}

.step p {
    margin-bottom: 15px;
}

/* Code blocks */
.code-block {
    background-color: #f7f8fa;
    border-radius: 6px;
    margin: 15px 0;
    overflow: auto;
}

.code-block pre {
    margin: 0;
    padding: 16px;
    overflow-x: auto;
}

.code-block code {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.9rem;
    color: #333;
}

/* Notes and alerts */
.note {
    background-color: #fff8e1;
    border-left: 4px solid #ffca28;
    padding: 15px;
    margin: 15px 0;
    border-radius: 0 4px 4px 0;
}

.note p {
    margin-top: 0;
    margin-bottom: 10px;
}

.note p:last-child {
    margin-bottom: 0;
}

/* Access URL styling */
.access-url {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background-color: #e8f5e9;
    border-radius: 6px;
}

.access-url a {
    font-weight: 500;
    color: #2e7d32;
    text-decoration: none;
    font-size: 1.2rem;
}

.access-url a:hover {
    text-decoration: underline;
}

/* Download button */
.download-button {
    display: inline-block;
    background-color: #0066cc;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin: 10px 0;
}

.download-button:hover {
    background-color: #0056b3;
}

.download-button i {
    margin-right: 8px;
}

.download-section {
    text-align: center;
    margin: 20px 0;
}

/* Responsive adjustments */
@media (max-width: 700px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .step h3 {
        font-size: 1.3rem;
    }
    
    .code-block pre {
        padding: 12px;
    }
    
    .code-block code {
        font-size: 0.8rem;
    }
}

/* Light/Dark mode specific styles */
body.dark-mode .code-block {
    background-color: #1e2030;
}

body.dark-mode .code-block code {
    color: #e4e6eb;
}

body.dark-mode .note {
    background-color: #3a3226;
    border-left-color: #ffca28;
}

body.dark-mode .access-url {
    background-color: #1b3327;
}

body.dark-mode .access-url a {
    color: #81c784;
}

body.dark-mode .content h2,
body.dark-mode .step h3,
body.dark-mode .page-header h1 {
    color: #4eaaff;
}
