/* Bootstrap Custom Model */
/* Modal styles */
.modal1 {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal content */
.modal-dialog1 {
    background-color: white;
    width: 90%;
    max-width: 500px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Modal header */
.modal-header1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 15px;
    border-bottom: 1px solid #dee2e6;
}

.modal-title1 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.close1 {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
}

.close1:hover {
    color: red;
}

/* Modal body */
.modal-body1 {
    padding: 20px;
    font-size: 14px;
    color: #212529;
}

/* Modal footer */
.modal-footer1 {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 15px 20px;
    border-top: 1px solid #dee2e6;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}
