/* S+ Installation page specific styles */

.warning-section {
    margin: 2rem 0;
}

.warning-banner {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.warning-banner h2 {
    color: #92400e;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.warning-banner p {
    color: #78350f;
    margin: 0;
}

.overview-section {
    margin: 2rem 0;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.info-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.downloads-section {
    margin: 2rem 0;
}

.download-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.instructions-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.instruction-step {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.instruction-step:hover {
    box-shadow: var(--shadow-sm);
}

.instruction-step h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
}

.instruction-step h4 {
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.help-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.help-card:hover {
    box-shadow: var(--shadow-sm);
}

.help-card h4 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.help-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    margin-top: 1rem;
    border: 1px solid var(--border-color);
}

/* Responsive design for S+ installation */
@media (max-width: 768px) {
    .instructions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .download-links {
        flex-direction: column;
    }
    
    .download-links .btn {
        text-align: center;
    }
    
    .instruction-step,
    .help-card {
        padding: 1rem;
    }
} 