.flatpickr-calendar .custom-submit {
    display: block;
    width: min(150px, 100%);
    padding: 8px;
    background: #28a745;
    color: white;
    text-align: center;
    border: none;
    cursor: pointer;
    margin-top: 5px;
    float: right;
}

#date-time {
    outline: none;
    border: none;
    background-color: #509a41;
    color: #fff;
    user-select: none;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    float: right;
    padding: 8px;
    width: 50%;
    position: relative;
    z-index: 2;
}

.loader-container {

    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #6d79798f;
    z-index: 1000;
    position: fixed;

}

.loader {
    width: 40px;
    padding: 4px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #25b09b;
    background: #ffffff;
    --_m:
        conic-gradient(#0000 10%, #000),
        linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
}

@keyframes l3 {
    to {
        transform: rotate(1turn)
    }
}


.border-danger {
    border: 1px solid red !important;
}


.position-relative { position: relative; }
.z-1 { z-index: 1; }
