
/* Custom Modal Styles */
.modal-title {
    color: #A20000;
    font-weight: bold;
}

#mymodal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

/* Modal Content */
.modal-dialog {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.modal-content {
    background-color: #F5F5DC;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
/* Modal Header */
.modal-header {
    padding: 10px 16px;
    background-color: #F5F5DC;
    color: #000;
    border-bottom: 1px solid #dee2e6;
}

/* Modal Body */
.modal-body {
    padding: 10px 16px;
    color: #A20000;
}


/* Modal Footer */
.modal-footer {
    padding: 10px 16px;
    background-color: #F5F5DC;
    border-top: 1px solid #dee2e6;
}

/* Checkbox Styles */
.check {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
}
/* Checkbox Indicator */
.check input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.check span {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 1px;
    background-color: #fff;
    transition: all 0.3s;
}

/* Checkbox Checked Indicator */
.check input[type="checkbox"]:checked+span::before {
    content: '\2713';
    font-size: 17px;
    color: #007bff;
    position: absolute;
    top: -6px;
    left: 2px;
}
/* Hover Effect */
.check:hover span {
    border-color: #007bff;
}

/* Focus Effect */
.check input[type="checkbox"]:focus+span {
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

.btno {
    background-color: #A20000;
    color: white;
    border: none;
    padding: 10px 15px;
    text-align: center;
    /* text-decoration: none; */
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.ok {
    background-color: #28A745;
    color: white;
    border: none;
    padding: 10px 15px;
    text-align: center;
    /* text-decoration: none; */
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.btno:hover {
    background-color: #bd2e2e;
    color: white;
}

.ok:hover {
    background-color: #218838;
    color: white;
}