/* Modal styles */

.pop-up-warning {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content-warning {
    background-color: #fefefe;
    margin: 15% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 80%; 
    max-width: 500px; 
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-radius: 10px;
}

.close-warning {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-warning:hover,
.close-warning:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-footer-warning {
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
}

.modal-footer-warning-button {
    padding: 20px 60px !important; /* Increased padding for larger button */
    margin: 10px !important; /* Increased margin for more space between buttons */
    border: none !important;
    border-radius: 15px !important;
    cursor: pointer !important;
    font-size: 15px !important; /* Increased font size for larger text */
    display: inline-block !important; /* Ensure buttons are displayed as inline-block */
}

.modal-footer-warning-button:nth-child(1) {
    background-color: #f44336 !important;
    color: white !important;
}

.modal-footer-warning-button:nth-child(2) {
    background-color: #ddd !important;
    color: black !important;
}

.modal-footer-warning-button:nth-child(1):hover {
    background-color: #d32f2f !important;
}

.modal-footer-warning-button:nth-child(2):hover {
    background-color: #ccc !important;
}
