.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    position: relative;
}

#confirmModal .modal-content {
    max-width: 450px;
    text-align: center;
    padding: 40px 35px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#confirmModal .modal-body {
    margin: 0;
    color: #d32f2f;
}

#confirmModal .modal-body p {
    margin: 0 0 30px 0;
    white-space: pre-line;
    font-size: 16px;
    line-height: 1.5;
    color: #d32f2f;
    font-weight: normal;
}

#confirmModal .modal-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

#confirmModal .btn-modal-no,
#confirmModal .btn-modal-yes {
    min-width: 100px;
    height: 30px;
    padding: 0 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: normal;
    transition: opacity 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#confirmModal .btn-modal-no {
    background-color: #6c757d;
    color: white;
}

#confirmModal .btn-modal-yes {
    background-color: #dc3545;
    color: white;
}

#confirmModal .btn-modal-no:hover {
    opacity: 0.85;
    background-color: #5a6268;
}

#confirmModal .btn-modal-yes:hover {
    opacity: 0.85;
    background-color: #c82333;
}
