/* Modal Fix - Hidden by default, shown only when active */

.modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.75) !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 999999 !important;
    backdrop-filter: blur(3px) !important;
}

/* Show modal when v-if is true */
.modal-overlay[style*="display: block"],
.modal-overlay[style*="display: flex"] {
    display: flex !important;
}

.modal {
    background: #2d2f31 !important;
    border: 1px solid #35383b !important;
    border-radius: 8px !important;
    max-width: 600px !important;
    width: 90% !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9) !important;
    z-index: 1000000 !important;
    position: relative !important;
}

.modal-header {
    padding: 24px !important;
    border-bottom: 1px solid #35383b !important;
}

.modal-body {
    padding: 24px !important;
}

.modal-footer {
    padding: 20px 24px !important;
    border-top: 1px solid #35383b !important;
}

