
/* Modal overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5000;
}

/* Modal content */
.modal-content {
    background: #1c1c1c;
    border-radius: 8px;
    width: 320px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: #f0f0f0;
    text-align: center;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.modal-content h2 {
    margin: 0;
    font-size: 1.25em;
    color: #e0e0e0;
    font-weight: 600;
    margin-bottom: 12px;
}

.modal-content p {
    margin: 8px 0;
    font-size: 0.95em;
    color: #b0b0b0;
    line-height: 1.4;
}

.modal-content strong {
    color: #f1f1f1;
    font-weight: 600;
}

.modal-content a {
    color: #8f9ee8;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.modal-content a:hover {
    color: #a3b1ff;
}

/* Button container */
.modal-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

/* Button styles */
.btn-cancel,
.btn-delete {
    border: none;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 0.85em;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-cancel {
    background-color: #333;
    color: #ddd;
    border: 1px solid #444;
}

.btn-cancel:hover {
    background-color: #444;
    transform: scale(1.05);
}

.btn-delete {
    background-color: #d9534f;
    color: #fff;
    border: 1px solid #d43f3a;
}

.btn-delete:hover {
    background-color: #c9302c;
    transform: scale(1.05);
}

