/* Alert box styles */
.custom-alert {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Modal Content */
.modal-content {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    position: relative;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Close Button */
.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: black;
}


.custom-alert .icon {
    font-size: 40px;
    margin-bottom: 10px;
}
.custom-alert .message {
    font-size: 18px;
    margin-bottom: 20px;
}
.custom-alert .close-btn {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.custom-alert.success .icon {
    color: green;
}
.custom-alert.error .icon {
    color: red;
}
.custom-alert.warning .icon {
    color: orange;
}