﻿.ITEMLIST {
    color: #2d3a42;
    font-weight: bold;
    font-style: normal
}




.header {
    background-color: #6C6C6C !important;
    color: White !important;
    font-family: Arial;
    font-size: 10pt;
    line-height: 200%;
    width: 100px;
    text-align: center;
}



.GridPager a, .GridPager span {
    display: block;
    padding: 6px 12px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}

.GridPager a {
    color: #fff;
    background-color: #15283c;
    border-color: #d43f3a;
}

.GridPager span {
    color: #fff;
    background-color: #ff6421;
    border-color: #46b8da
}

.hideGridColumn {
    display: none;
}


.DashboardCounterClass {
    color: white;
}

.Hlogo {
    color: #fff;
    font-size: 30px;
    font-weight: bolder;
}


.DivModel {
    position: fixed;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    padding-top: 5%;
    overflow-y: auto;
}

.center-box {
    margin: 0 auto;
    width: 55%;
    background: #fff;
    border-radius: 12px;
    padding: 1px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
    margin-top: 12px;
}

@media (max-width: 991px) {
    .center-box {
        width: 90%;
        padding: 0px;
        margin-top: 20px;
    }
}

.center-box-Small {
    margin: 0 auto;
    width: 33%;
    background: #fff;
    border-radius: 12px;
    padding: 1px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
    margin-top: 12px;
}

@media (max-width: 991px) {
    .center-box-Small {
        width: 90%;
        padding: 0px;
        margin-top: 20px;
    }
}

/* Responsive: for mobile/tablets (width below 768px) */
@media screen and (max-width: 767px) {
    .DivModel {
        padding-top: 10%;
        margin-top: 15px; /* More padding for mobile */
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .DivModel {
        padding-top: 8%; /* Adjusted for tablet */
    }
}



/* Close button positioning for all devices */
.NewClose {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 12px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

    /* Hover effect for better UX */
    .NewClose:hover {
        transform: scale(1.2);
        opacity: 0.8;
    }

/* Responsive fine-tuning (optional) */
@media (max-width: 767px) {
    .NewClose {
        top: 8px;
        right: 10px;
        font-size: 12px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .NewClose {
        top: 10px;
        right: 12px;
        font-size: 12px;
    }
}




.ProcessBarPosition {
    font-size: 16px;
    color: #23a0d0;
    font-weight: 700;
    position: fixed;
    background: #bdaeae4f;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0px;
    right: 0;
    bottom: 0;
    z-index: 99999999999;
    padding-top: 14%;
    padding-left: 43%;
}


a {
    position: relative;
    display: inline-block;
}

    a[title]:hover::after {
        content: attr(title);
        position: absolute;
        top: -100%;
        left: 0;
        background-color: black;
        width: 120px;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;
        font-size: 12px;
        z-index: 999;
    }


.modal-headerWarning {
    padding: 8px 16px 8px 11px;
    background-color: #f06548;
    color: #FFF;
    border-bottom: 0;
    border-radius: 3px 3px 0 0;
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    font-size: 14px;
}


.model-contentMsgWarning {
    color: #f06548;
    font-size: 16px;
}


.modal-headerSuccess {
    padding: 8px 16px 8px 11px;
    background-color: #45cb85;
    color: #FFF;
    border-bottom: 0;
    border-radius: 3px 3px 0 0;
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    font-size: 14px;
}


.model-contentMsgSuccess {
    color: #45cb85;
    font-size: 16px;
}

.modal-headerConfirm {
    background-color: #4b38b3;
    padding: 8px 16px 8px 11px;
    color: #FFF;
    border-bottom: 0;
    border-radius: 3px 3px 0 0;
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    font-size: 14px;
}


.Vhead {
    font-size: 20px;
    font-weight: bold;
}

@media (max-width: 767px) {
    .Vhead {
        font-size: 20px;
        font-weight: bold;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .Vhead {
        font-size: 20px;
        font-weight: bold;
    }
}

.model-contentMsgConfirm {
    color: #4b38b3;
    font-size: 16px;
}


#___Footer {
    display: flex;
    justify-content: flex-end; /* Align buttons to the right */
    gap: 10px; /* Space between Yes/No buttons */
    padding: 15px 20px;
    border-top: none;
}

    /* Optional: make buttons consistent */
    #___Footer .btn {
        min-width: 90px;
        font-weight: 500;
        border-radius: 6px;
    }
