/* Coming Soon Modal Styles */
.coming-soon-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coming-soon-modal.coming-soon-show {
    opacity: 1;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.coming-soon-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.coming-soon-modal.coming-soon-show .coming-soon-content {
    transform: translate(-50%, -50%) scale(1);
}

.coming-soon-header {
    padding: 20px 24px 16px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coming-soon-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
}

.coming-soon-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.coming-soon-close:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.coming-soon-body {
    padding: 20px 24px;
}

.coming-soon-body p {
    margin: 0;
    color: #4b5563;
    line-height: 1.5;
    font-size: 16px;
}

.coming-soon-footer {
    padding: 16px 24px 20px;
    border-top: 1px solid #e5e7eb;
    text-align: right;
}

.coming-soon-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 80px;
}

.coming-soon-btn-primary {
    background-color: #3b82f6;
    color: white;
}

.coming-soon-btn-primary:hover {
    background-color: #2563eb;
}

.coming-soon-btn-primary:active {
    background-color: #1d4ed8;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .coming-soon-content {
        max-width: 350px;
        width: 95%;
        margin: 0 10px;
    }
    
    .coming-soon-header {
        padding: 16px 20px 12px;
    }
    
    .coming-soon-header h3 {
        font-size: 18px;
    }
    
    .coming-soon-body {
        padding: 16px 20px;
    }
    
    .coming-soon-body p {
        font-size: 15px;
    }
    
    .coming-soon-footer {
        padding: 12px 20px 16px;
    }
    
    .coming-soon-btn {
        padding: 12px 24px;
        font-size: 15px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .coming-soon-content {
        max-width: 320px;
        width: 98%;
        margin: 0 5px;
    }
    
    .coming-soon-header {
        padding: 14px 16px 10px;
    }
    
    .coming-soon-header h3 {
        font-size: 16px;
    }
    
    .coming-soon-body {
        padding: 14px 16px;
    }
    
    .coming-soon-body p {
        font-size: 14px;
    }
    
    .coming-soon-footer {
        padding: 10px 16px 14px;
    }
    
    .coming-soon-close {
        width: 28px;
        height: 28px;
        font-size: 20px;
    }
}

/* Animation for better UX */
@keyframes coming-soon-fade-in {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.coming-soon-modal.coming-soon-show .coming-soon-content {
    animation: coming-soon-fade-in 0.3s ease-out;
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .coming-soon-content {
        background: #1f2937;
        color: #f9fafb;
    }
    
    .coming-soon-header {
        border-bottom-color: #374151;
    }
    
    .coming-soon-header h3 {
        color: #f9fafb;
    }
    
    .coming-soon-close {
        color: #9ca3af;
    }
    
    .coming-soon-close:hover {
        background-color: #374151;
        color: #d1d5db;
    }
    
    .coming-soon-body p {
        color: #d1d5db;
    }
    
    .coming-soon-footer {
        border-top-color: #374151;
    }
}
