/* Install Guide Modal Styles */
.install-guide-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.install-guide-modal.is-open {
    display: flex;
}

/* Body scroll lock when modal is open */
body.modal-open {
    overflow: hidden;
}

.install-guide-modal .install-guide-content {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.install-guide-modal .guide-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.install-guide-modal .tab-button {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--text-color);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.install-guide-modal .tab-button.active {
    background-color: var(--primary-color);
    color: #fff;
}

.install-guide-modal .guide-content {
    display: none;
}

.install-guide-modal .guide-content.active {
    display: block;
}

.install-guide-modal .guide-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.install-guide-modal .guide-step {
    background-color: #000;
    padding: 2rem;
    border-radius: 8px;
    color: #fff;
}

.install-guide-modal .guide-step h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.install-guide-modal .guide-step p {
    margin-bottom: 1rem;
    color: #fff;
}

.install-guide-modal .guide-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin-top: 1rem;
}

.install-guide-modal .close-guide-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Responsive styles for modal */
@media (max-width: 768px) {
    .install-guide-modal .guide-steps {
        grid-template-columns: 1fr;
    }
    
    .install-guide-modal .install-guide-content {
        padding: 1.5rem;
    }
    
    .install-guide-modal .guide-step {
        padding: 1.5rem;
    }
} 