html {
  font-size: 14px;
}

:root {
    /*    --theme-purple: #6495ed;*/
    /*    --theme-purple: #4e1061;*/
    --theme-purple: #531168;
    --theme-light-purple: #e79dff;
    /*    --theme-pink: #faf0e6;*/
    --theme-pink: #e6666e;
    --theme-gradient: linear-gradient(90deg, rgba(78,16,97,1) 0%, rgba(230,102,110,1) 100%) !important;
    --theme-gradient-hashcode: linear-gradient(to right, #4B006E, #FF6B6B);
    /*    --theme-bg-gray: #f2f2f2;*/
    --theme-bg-gray: #f7f7f7;
    --theme-border-purple: #6A0572;
    --theme-dashboard-header: #101B34;
    --theme-pending-low: #0c7d39;
    --theme-pending-medium: #d9534f;
    --theme-pending-high: #f0c400;
}

/*.custom-toggler-icon {
    width: 100%;*/ /* Ensure full width */
    /*background: url('../images/menu_dotted.svg') no-repeat center center/cover;
}*/

.scale-on-hover {
  
}
    .scale-on-hover:hover {
        transform: scale(1.05);
    }

.cursor-pointer {
    cursor: pointer;
}

.cursor-block {
    cursor:not-allowed;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-control-sm:focus, .form-check-input:focus, .form-select:focus, form-select-sm:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--theme-border-purple);
    border-color: var(--theme-border-purple);
}

html {
  position: relative;
  min-height: 100%;
}

body {
/*  margin-bottom: 60px;*/
}

footer {
    text-align: left;
/*    padding: 10px;
    margin: 26px 110px 0px 110px;
    border-top: 1px solid grey;*/
}

/*.navbar {
    background-color: black;
    color: white;
    padding: 15px;
    font-size: 20px;
    padding-left: 7.5vw;
}*/

.content {
    /* margin-top: 50px; */
    margin-left: 100px;
    margin-right: 100px;
    padding: 20px;
    /*    background-color: #f2f2f2;
    border: 1px solid #f2f2f2;*/
    background-color: var(--theme-bg-gray);
    border: 1px solid var(--theme-bg-gray);
    border-radius: 5px;
    /*    height: 166px;
    display: flex;*/
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}
button {
    border-radius : 5px;
}

.container {
    padding: 0;
}

/*new*/

.backBtn {
    position: absolute;
    top: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    padding: 8px 10px 8px 8px;
    font-size: 16px;
    /* border: none; */
    background-color: #488A99;
    color: white;
    border-radius: 360px;
    border: 2px solid white;
    cursor: pointer;
}

    /* Ensure the button text is centered */
    .backBtn span {
        font-weight: bold;
    }

.header {
    /*    background-color: #101B34;*/
    background-color: var(--theme-dashboard-header);
    color: white;
    padding: 10px 10px 5px 10px;
    text-align: center;
    font-size: 14px;
    margin-bottom: 15px;
    /*     margin: 5px 5px;*/
    font-family: auto;
}

    .header h1 {
        font-size: 2rem !important;
    }


h2 {
    margin-bottom: 15px;
}

.filter-container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

    .filter-container label {
        margin-right: 10px;
    }

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: center;
    transition: 0.3s;
}

    .card:hover {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .card h3 {
        font-size: 18px;
        margin-bottom: 5px;
        height: 60px;
    }

    .card .schemes {
        font-size: 14px;
        color: #555;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .card .row {
        display: flex;
        justify-content: space-around;
        margin: 5px 0;
        align-items: center;
    }

    .card p {
        font-size: 14px;
    }

.pending-percentage {
    font-weight: bold;
    padding: 5px;
    border-radius: 4px;
    display: inline-block;
}

/* Color coding for Pending % */
.pending-low {
    /*    background-color: #0c7d39;*/
    background-color: var(--theme-pending-low);
    color: white;
}

.pending-medium {
    /*    background-color: #f0c400;*/
    background-color: var(--theme-pending-medium);
    color: black;
}

.pending-high {
    /*    background-color: #d9534f;*/
    background-color: var(--theme-pending-high);
    color: white;
}

.card button {
    margin-top: 10px;
    padding: 8px;
    width: 50%;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

    .card button:hover {
        background-color: #0056b3;
    }

.btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

    .btn:hover {
        background-color: #0056b3;
    }

.pending-green {
    color: green;
}

.pending-orange {
    color: orange;
}

.pending-red {
    color: red;
}


/*section website-header*/
.header-top-area {
    background: #531168 none repeat scroll 0 0;
    padding: 5px 0 5px 5px;
    color: white;
}

.header-top {
    display: flex;
    justify-content: space-between;
    padding-right: 20px;
}

.header-social {
    align-items: center;
    /* display: flex
				; */
    height: 100%;
    color: #fff;
    width: 100%;
}

.gov-link {
    font-size: 14px;
    display: flex;
    align-items: center;
}

.gov-first-link {
    text-align: center;
    margin-right: 15px;
    text-align: left;
    width: 250px;
    display: flex;
}

.gov a {
    color: white;
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    text-decoration: none;
}

.dropdown, .dropup {
    position: relative;
}

.dropbtn {
    /* background-color: #4CAF50; */
    background-color: #531168;
    color: white;
    padding: 4px;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 80px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 5px;
    top: 38px;
}

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        border-bottom: 1px solid #ddd;
        font-size: 14px;
    }

.dropdown:hover .dropdown-content {
    display: block;
    z-index: 200;
    cursor: pointer;
}

/*.dropdown:active .dropdown-content {
    display: block;
    z-index: 200;
    cursor: pointer;
}*/


.header-info .mail-us {
    position: relative;
}




/*section footer */
.footer-main {
    /* background-color: rgb(68, 150, 141); */
    /* background-image: url(./images/footerbg.png); */
    background-size: cover;
    display: flex;
    /*    justify-content: space-evenly;*/
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    align-content: center;
    padding: 20px 0px 20px;
    gap: 50px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
    text-align: center;
    color: white;
    border-top: 1px solid rgb(255 153 251);
    /* background: rgb(56, 93, 88); */
    padding: 20px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-extras {
    display: flex;
    flex-direction: column;
    margin: 0px !important;
    gap: 20px !important;
}

.map-logo {
    /*    height: 100px;*/
/*    width: 100px;*/
    width: 70px;
    content: url(../images/EmblemofGoa_White.png);
    background-size: contain;
    transition-duration: 0.3s;
    margin-bottom: 7px;
}

.footer-heading {
    color: rgb(255, 255, 255);
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
}

.footer-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    gap: 10px;
}

.number-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 15px;
}

.number-footer-icon {
    content: url(../images/call.svg);
    width: 20px;
    height: 20px;
}

.number-footer div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.email-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    gap: 15px;
}

.email-footer-icon {
    content: url(../images/mail.svg);
    width: 20px;
    height: 20px;
}

.address-footer {
    font-size: 12.8px;
    font-weight: 400;
    line-height: 19.2px;
    text-align: left;
    color: white;
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.loc-footer-icon {
    content: url(../images/loc.svg);
    width: 20px;
    height: 20px;
}

.footer-ul {
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
    flex-direction: column;
    gap: 10px;
    margin: 0px !important;
    padding: 0px !important;
}

.links {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.visitor-div {
    display: flex;
    align-items: center;
}

.visitor-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
    color: white;
}

.text-div {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.copyright-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 21.6px;
    text-align: center;
    color: rgb(255, 255, 255);
}

/*section home footer*/

.home-footer {
    /*min-height: 64px;*/ /* Adjust as needed */
    min-height: 10vh; /* Adjust as needed */
    width: 100%; /* Ensure full width */
    background: linear-gradient(90deg, rgba(78,16,97,1) 0%, rgba(230,102,110,1) 100%) !important;
}


/*pgrs*/
.pgrs-comment-div {
    background: #fbefff;
    padding: 5px !important;
    border-radius: 5px;
}

/*section loader*/

#loader-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    border: 16px solid #f3f3f3; /* Light gray */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


