/* Custom Modal Styling */
.custom-modal {
    /* border-radius: 12px; */
    overflow: hidden;
    background: white;
    color: black;
    text-align: center;
    box-shadow: 0 4px 20px rgba(125, 124, 122, 0.4);
    border: 1px solid black;
}

/* Header */
.custom-modal .modal-header {
    /* background: #fcd28b; */
    color: black;
    font-weight: bold;
    border-bottom: none;
    padding: 15px;
}

/* Body */
.custom-modal .modal-body {
    font-size: 18px;
    padding: 20px;
}

/* Footer */
.custom-modal .modal-footer {
    border-top: none;
    padding: 15px;
    justify-content: center;
}

/* Button */
.custom-btn {
    background: #b7893b;
    color: black;
    font-weight: bold;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    transition: 0.3s;
}

.custom-btn:hover {
    background: fcd28b;
    color: black;
    box-shadow: 0 0 10px black;
}
