/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: none;
    place-items: center;
}

.modal-overlay.active {
    display: grid;
}

.modal {
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.modal-header {
    padding: 16px;
    border-bottom: 1px solid #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 0.8rem;
    color: #ddd;
    font-weight: 500;
    margin: 0;
}

.modal-close {
    cursor: pointer;
    color: #555;
    font-size: 1.2rem;
    line-height: 1;
}

.modal-close:hover {
    color: #fff;
}

.modal-body {
    padding: 24px;
}
