/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

/* :root {
    scroll-behavior: smooth;
    --primary-color: #012970;
    --primary-light-color: #b5d0ff;
    --primary-dark-color: #033996;
    --white-color: #fff;
    --light-color: #f2f7ff;
    --grey-color: #444444;
    --black-color: #000;
} */
body {
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    font-weight: initial;
    line-height: normal;
    -webkit-font-smoothing: antialiased;
    background: var(--light-color);
    color: var(--grey-color);
    overflow-x: hidden;
}

option.inputlabel {
    background-color: var(--light-color) !important;
    color: var(--black-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--primary-dark-color);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

.DuplicateData {
    display: grid;
    flex-flow: wrap row;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
    margin-top: 90px;
    padding: 20px 30px;
    transition: all 0.3s;
    overflow-x: hidden;
    padding-top: 0px;
}

@media (max-width: 1199px) {
    #main {
        padding: 20px;
        padding-top: 0px;
    }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
    margin-bottom: 10px;
    background: var(--primary-color);
    padding: 7px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pagetitle h1 {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--black-color);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 0px;
    z-index: 99999;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 10px;
    font-size: 12px;
    display: flex;
    height: 25px;
    border-radius: 0;
    transition: all 0.4s;
    justify-content: center;
}

.back-to-top i {
    font-size: 16px;
    color: var(--white-color);
    line-height: 0;
}

.back-to-top:hover {
    background: #6776f4;
    color: var(--white-color);
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

tr.hide-table-padding td {
    padding: 0;
}

.expand-button {
    position: relative;
}

.accordion-toggle .expand-button:after {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translate(0, -50%);
    content: "-";
}

.accordion-toggle.collapsed .expand-button:after {
    content: "+";
}

.row-collapse td {
    padding: 0px 0px;
    line-height: 0px;
    white-space: nowrap;
    overflow: hidden;
    transition-duration: 0.75s;
    border: 1px solid var(--white-color);
}

.row-expand td {
    line-height: 100%;
    transition-duration: 0.75s;
    border: 1px solid black;
}

table,
th,
td {
    /* border: 1px solid black; */
    border-collapse: collapse;
    /* padding: 15px 15px;
    margin: 15px 15px; */
    text-align: center;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
    border-radius: 4px;
    padding: 10px 0;
    -webkit-animation-name: dropdown-animate;
    animation-name: dropdown-animate;
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    border: 0;
    box-shadow: 0 5px 30px 0
        color-mix(in srgb, var(--primary-color), transparent 90%);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
    text-align: center;
    font-size: 15px;
    padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
    color: var(--grey-color);
    text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
    text-decoration: none;
}

.dropdown-menu .dropdown-divider {
    color: #a5c5fe;
    margin: 0;
}

.dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 10px 15px;
    transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
    margin-right: 10px;
    font-size: 18px;
    line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
    background-color: var(--light-color);
}

@media (min-width: 768px) {
    .dropdown-menu-arrow::before {
        content: "";
        width: 13px;
        height: 13px;
        background: var(--white-color);
        position: absolute;
        top: -7px;
        right: 20px;
        transform: rotate(45deg);
        border-top: 1px solid var(--grey-color);
        border-left: 1px solid var(--grey-color);
    }
}

@-webkit-keyframes dropdown-animate {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

    0% {
        opacity: 0;
    }
}

@keyframes dropdown-animate {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

    0% {
        opacity: 0;
    }
}

/* Light Backgrounds */
.bg-primary-light {
    background-color: #cfe2ff;
    border-color: #cfe2ff;
}

.bg-secondary-light {
    background-color: #e2e3e5;
    border-color: #e2e3e5;
}

.bg-success-light {
    background-color: #d1e7dd;
    border-color: #d1e7dd;
}

.bg-danger-light {
    background-color: #f8d7da;
    border-color: #f8d7da;
}

.bg-warning-light {
    background-color: var(--white-color) 3cd;
    border-color: var(--white-color) 3cd;
}

.bg-info-light {
    background-color: #cff4fc;
    border-color: #cff4fc;
}

.bg-dark-light {
    background-color: #d3d3d4;
    border-color: #d3d3d4;
}

/* Card */
.card {
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    transition: transform 1s;
    /* box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1); */
}

.cards {
    margin-bottom: 30px;
    margin: 15px 2px;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 0 30px
        color-mix(in srgb, var(--primary-color), transparent 90%);

    width: 1252px;
}

.search-section .card-body {
    padding: 10px;
}

.card1 {
    margin-bottom: 30px;

    border: none;
    border-radius: 5px;
    box-shadow: 0px 0 30px
        color-mix(in srgb, var(--primary-color), transparent 90%);
}

.card-header,
.card-footer {
    border-color: var(--light-color);
    background-color: var(--white-color);
    color: color-mix(in srgb, var(--primary-color), transparent 60%);
    padding: 15px;
}

.card-footer1 {
    border-color: var(--light-color);
    background-color: var(--white-color);
    color: color-mix(in srgb, var(--primary-color), transparent 60%);
    padding: 15px;
    width: 1223px;
    margin-left: 23px;
}

.fa {
    width: 40px;
    background-color: var(--primary-color);
}

.optionclass {
    background-color: var(--white-color);
}

.settings {
    margin-left: 1130px;
}

.card-title {
    padding: 20px 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: var(--black-color);
    font-family: "Poppins", sans-serif;
}

.landing .card-title {
    padding: 20px 0 15px 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 28px;
    color: var(--black-color);
    font-family: "Poppins", sans-serif;
}

.card.login-card {
    background: var(--white-color) 17;
    border: 1px solid var(--primary-color);
}

.card.login-card:hover {
    border: 1px solid var(--white-color);
    box-shadow: 0px 0 30px
        color-mix(in srgb, var(--primary-color), transparent 90%);
}

.card.login-card:hover .landing-icon {
    border-right: 1px solid var(--white-color);
}

.card.login-card:hover .landing-icon.arrow {
    border-right: 0px solid var(--white-color);
}

.info .card-title {
    font-size: 14px;
}

.card-data {
    width: 194px;
}

.card-title span {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 400;
}

.main-selected-filter {
    color: var(--primary-color) !important;
}

.live-selected-filter {
    color: var(--primary-color) !important;
}

.card-body {
    padding: 0 20px 20px 20px;
}

.card-img-overlay {
    background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
}

/* Close Button */
.btn-close {
    background-size: 25%;
}

.btn-close:focus {
    outline: 0;
    box-shadow: none;
}

/* Accordion */
.accordion-item {
    border: 1px solid var(--light-color);
}

.accordion-button:focus {
    outline: 0;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--light-color);
}

.accordion-flush .accordion-button {
    padding: 15px 0;
    background: none;
    border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
    box-shadow: none;
    color: var(--primary-color);
}

.accordion-flush .accordion-body {
    padding: 0 0 15px 0;
    color: color-mix(
        in srgb,
        var(--primary-color),
        var(--primary-dark-color) 60%
    );
    font-size: 15px;
}

/* Breadcrumbs */
.breadcrumb {
    font-size: 12px;
    font-family: "Poppins", sans-serif;
    color: var(--black-color);
    font-weight: 500;
}

.breadcrumb a {
    color: var(--primary-color);
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: color-mix(in srgb, var(--primary-color), transparent 60%);
}

.breadcrumb .breadcrumb-item::before {
    color: var(--primary-light-color);
}

.breadcrumb .active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Bordered Tabs */
.nav-tabs-bordered {
    border-bottom: 2px solid var(--light-color);
}

.nav-tabs-bordered .nav-link {
    margin-bottom: -2px;
    border: none;
    color: var(--primary-dark-color);
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
    color: var(--primary-color);
}

.nav-tabs-bordered .nav-link.active {
    background-color: var(--white-color);
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

/*********************** Demo - 2 *******************/

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
    line-height: 1;
}

@media (min-width: 1200px) {
    .logo {
        height: 35px;
    }
}

.logo img {
    height: 35px;
}

@media (max-width: 576px) {
    .logo img {
        height: 25px !important;
    }

    .breadcrumb-header {
        width: 40px !important;
    }
}

.logo span {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: "Poppins", sans-serif;
}

.header {
    transition: all 0.5s;
    z-index: 997;
    height: 90px;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
    background-color: var(--white-color);
    /* Toggle Sidebar Button */
    /* Search Bar */
}

.header .toggle-sidebar-btn {
    font-size: 26px;
    cursor: pointer;
    color: var(--primary-color);
}

.dashboard-filter .btn {
    background: white;
    border: 0px;
    color: black;
    font-size: 16px;
    padding: 4px;
}

.dashboard-filter .btn option {
    color: #4a5446;
}

.nav-item.top-nav a {
    /* border: 2px solid var(--primary-color); */
    color: var(--primary-color);
    padding: 4px 26px;
    background: var(--primary-color) 17;
    border-radius: 60px;
    border: 2px solid var(--primary-color) 1c;
}

.nav-item.top-nav a:hover {
    background: linear-gradient(
        45deg,
        var(--primary-dark-color),
        var(--primary-color)
    );
    color: var(--white-color);
    box-shadow: color-mix(in srgb, var(--primary-color), transparent 80%) 0px
        8px 24px;
}

.dashboard-filter .btn:focus {
    box-shadow: color-mix(in srgb, var(--primary-color), transparent 80%) 0px
        8px 24px;
}

.header .search-bar {
    min-width: 360px;
    padding: 0 20px;
}

@media (max-width: 1199px) {
    .header .search-bar {
        position: fixed;
        top: 50px;
        left: 0;
        right: 0;
        padding: 20px;
        box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
        background: var(--white-color);
        z-index: 9999;
        transition: 0.3s;
        visibility: hidden;
        opacity: 0;
    }

    .header .search-bar-show {
        top: 60px;
        visibility: visible;
        opacity: 1;
    }
}

.header .search-form {
    width: 100%;
}

.header .search-form input {
    border: 0;
    font-size: 14px;
    color: var(--primary-color);
    border: 1px solid rgba(1, 41, 112, 0.2);
    padding: 7px 38px 7px 8px;
    border-radius: 3px;
    transition: 0.3s;
    width: 100%;
}

.header .search-form input:focus,
.header .search-form input:hover {
    outline: none;
    box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
    border: 1px solid rgba(1, 41, 112, 0.3);
}

.header .search-form button {
    border: 0;
    padding: 0;
    margin-left: -30px;
    background: none;
}

.header .search-form button i {
    color: var(--primary-color);
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
    list-style: none;
}

.header-nav > ul {
    margin: 0;
    padding: 0;
}

.header-nav .nav-icon {
    font-size: 22px;
    color: var(--primary-color);
    margin-right: 25px;
    position: relative;
}

.header-nav .nav-profile {
    color: var(--primary-color);
}

.header-nav .nav-profile img {
    max-height: 36px;
}

.header-nav .nav-profile span {
    font-size: 14px;
    font-weight: 600;
}

.header-nav .badge-number {
    position: absolute;
    inset: -2px -5px auto auto;
    font-weight: normal;
    font-size: 12px;
    padding: 3px 6px;
}

.header-nav .notifications {
    inset: 8px -15px auto auto !important;
}

.header-nav .notifications .notification-item {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    transition: 0.3s;
}

.header-nav .notifications .notification-item i {
    margin: 0 20px 0 10px;
    font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
    font-size: 13px;
    margin-bottom: 3px;
    color: #919191;
}

.header-nav .notifications .notification-item:hover {
    background-color: var(--light-color);
}

.header-nav .messages {
    inset: 8px -15px auto auto !important;
}

.header-nav .messages .message-item {
    padding: 15px 10px;
    transition: 0.3s;
}

.header-nav .messages .message-item a {
    display: flex;
}

.header-nav .messages .message-item img {
    margin: 0 20px 0 10px;
    max-height: 40px;
}

.header-nav .messages .message-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--grey-color);
}

.header-nav .messages .message-item p {
    font-size: 13px;
    margin-bottom: 3px;
    color: #919191;
}

.header-nav .messages .message-item:hover {
    background-color: var(--light-color);
}

.header-nav .profile {
    min-width: 240px;
    padding-bottom: 0;
    top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--grey-color);
}

.header-nav .profile .dropdown-header span {
    font-size: 14px;
}

.header-nav .profile .dropdown-item {
    font-size: 14px;
    padding: 10px 15px;
    transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
    margin-right: 10px;
    font-size: 18px;
    line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
    background-color: var(--light-color);
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
    position: fixed;
    top: 90px;
    left: 0;
    bottom: 0;
    width: 240px;
    z-index: 996;
    transition: all 0.3s;
    padding: 20px 0;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-light-color) transparent;
    box-shadow: 0px 0px 20px
        color-mix(in srgb, var(--primary-color), transparent 80%);
    background-color: var(--white-color);
}

@media (max-width: 1199px) {
    .sidebar {
        left: -300px;
    }
}

.sidebar::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: var(--white-color);
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: var(--primary-light-color);
}

@media (min-width: 1200px) {
    #main,
    #footer {
        margin-left: 240px;
    }
}

@media (max-width: 1199px) {
    .toggle-sidebar .sidebar {
        left: 0;
    }
}

@media (min-width: 1200px) {
    .toggle-sidebar #main,
    .toggle-sidebar #footer {
        margin-left: 0;
    }

    .toggle-sidebar .sidebar {
        left: -240px;
    }
}

.sidebar-nav {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sidebar-nav li {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* .sidebar-nav .nav-item {
  margin-bottom: 5px;
} */

.sidebar-nav .nav-heading {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--primary-light-color);
    font-weight: 600;
    margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-color);
    transition: 0.3;
    background: linear-gradient(45deg, var(--primary-light-color), transparent);
    padding: 10px 15px;
    border-radius: 0px;
    border-bottom: 1px solid var(--light-color);
    border-left: 6px solid var(--primary-color);
}

.sidebar-nav .nav-link i {
    font-size: 16px;
    margin-right: 10px;
    color: var(--primary-color);
}

.sidebar-nav .nav-link.collapsed {
    color: #3e3e3e;
    background: var(--white-color);
    border-left: 6px solid var(--primary-dark-color);
}

.sidebar-nav .nav-link.collapsed i {
    color: #3e3e3e;
}

.sidebar-nav .nav-link:hover {
    color: var(--primary-color);
    background: var(--light-color);
    border-left: 6px solid var(--primary-color);
}

.sidebar-nav .nav-link:hover i {
    color: var(--primary-color);
}

.sidebar-nav .nav-link .bi-chevron-down {
    margin-right: 0;
    transition: transform 0.2s ease-in-out;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
    transform: rotate(180deg);
}

.sidebar-nav .nav-content {
    padding: 0px 0 0 0;
    margin: 0;
    list-style: none;
}

.sidebar-nav .nav-content a {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    transition: 0.3;
    padding: 10px 0 10px 40px;
    transition: 0.3s;
    background: var(--light-color);
    border: none;
}

.sidebar-nav .nav-content a i {
    font-size: 6px;
    margin-right: 8px;
    line-height: 0;
    border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
    color: var(--primary-color);
}

.sidebar-nav .nav-content a.active i {
    background-color: var(--primary-color);
}

/*--------------------------------------------------------------
# Keltron
--------------------------------------------------------------*/

* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

p {
    color: grey;
}

#heading {
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: normal;
}

#msform {
    text-align: center;
    position: relative;
}

#msform fieldset {
    background: var(--white-color);
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    position: relative;
}

.form-card {
    text-align: left;
}

#msform fieldset:not(:first-of-type) {
    display: none;
}

/* #msform input:focus,
#msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid var(--primary-color);
    outline-width: 0;
} */

#msform .action-button {
    width: 100px;
    background: var(--primary-color);
    font-weight: bold;
    color: var(--white-color);
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 0px 10px 5px;
    float: right;
}

#msform .action-button:hover,
#msform .action-button:focus {
    background-color: var(--primary-dark-color);
}

#msform .action-button-previous {
    width: 100px;
    background: var(--white-color);
    font-weight: bold;
    color: var(--white-color);
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px 10px 0px;
    float: right;
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
    background-color: var(--black-color);
}

.card {
    border: none;
    position: relative;
}

.fs-title {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: normal;
    text-align: left;
    font-weight: 700;
}

.purple-text {
    color: var(--primary-color);
    font-weight: normal;
}

.steps {
    font-size: 25px;
    color: gray;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right;
}

.fieldlabels {
    color: gray;
    text-align: left;
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
    display: flex;
    justify-content: center;
}

#progressbar .active {
    color: var(--primary-color);
}

#progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 16%;
    float: left;
    position: relative;
    font-weight: 400;
}

#progressbar #chooseState:before {
    font-family: FontAwesome;
    content: "\f124";
}

#progressbar #basicDetails:before {
    font-family: FontAwesome;
    content: "\f007";
}

#progressbar #optionalDetails:before {
    font-family: FontAwesome;
    content: "\f234";
}

#progressbar #subjects:before {
    font-family: FontAwesome;
    content: "\f02d";
}

#progressbar #documentUpload:before {
    font-family: FontAwesome;
    content: "\f093";
}

#progressbar #studycenters:before {
    font-family: FontAwesome;
    content: "\f1ad";
}

#progressbar #review:before {
    font-family: FontAwesome;
    content: "\f06e";
}

#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 20px;
    color: var(--white-color);
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
}

#progressbar li:after {
    content: "";
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1;
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: var(--primary-color);
}

.progress {
    height: 10px;
    background: var(--white-color);
}

.progress-bar {
    background-color: var(--primary-color);
}

.bg-danger {
    background-color: #ee6666;
}

.bg-warning {
    background-color: rgb(255 205 86) !important;
}

.bg-success {
    background-color: green !important;
}

.btn-danger {
    --bs-btn-color: var(--white-color);
    --bs-btn-bg: #ee6666;
    --bs-btn-border-color: #ee6666;
    --bs-btn-hover-color: var(--white-color);
    --bs-btn-hover-bg: #bb2d3b;
    --bs-btn-hover-border-color: #b02a37;
    --bs-btn-focus-shadow-rgb: 225, 83, 97;
    --bs-btn-active-color: var(--white-color);
    --bs-btn-active-bg: #ee6666;
    --bs-btn-active-border-color: #a52834;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--white-color);
    --bs-btn-disabled-bg: #dc3545;
    --bs-btn-disabled-border-color: #dc3545;
}

.fit-image {
    width: 100%;
    object-fit: cover;
}

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
.dashboard .filter {
    position: absolute;
    right: 0px;
    top: 15px;
}

.dashboard .filter .icon {
    color: var(--primary-light-color);
    padding-right: 20px;
    padding-bottom: 5px;
    transition: 0.3s;
    font-size: 16px;
}

.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
    color: var(--primary-color);
}

.dashboard .filter .dropdown-header {
    padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-light-color);
    margin-bottom: 0;
    padding: 0;
}

.dashboard .filter .dropdown-item {
    padding: 8px 15px;
}

/* Info Cards */
.dashboard .info-card {
    padding-bottom: 10px;
}

.dashboard .info-card h6 {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
    padding: 0;
}

.dashboard .card-icon {
    font-size: 32px;
    line-height: 0;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    flex-grow: 0;
    border-radius: 4px;
}

.dashboard .info-card.card {
    box-shadow:
        rgb(0 0 0 / 0%) 0px 4px 6px -1px,
        rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.dashboard .info-card.card .card-title {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
}

.dashboard .sales-card .card-icon {
    color: #2eca6a;
    background: #e0f8e9;
}

.dashboard .revenue-card .card-icon {
    /* color: ; */
    background: #e0f8e9;
}

.dashboard .customers-card .card-icon {
    color: #ff771d;
    background: #ffe7d6;
}

.dashboard .branch-card .card-icon {
    color: #ff1d1d;
    background: #ffd4d4;
}

.dashboard .today_total-card .card-icon {
    color: purple;
    background: #80008036;
}

.dashboard .feedback-card .card-icon {
    color: #f6c000;
    background: var(--light-color);
}

.dashboard .fee-card .card-icon {
    color: #8e1dff;
    background: #e9d3ff;
}

.dashboard .locationmismatch_card .card-icon {
    color: #1d37ff;
    background: #bbc8fb;
}

/* Activity */
.dashboard .activity {
    font-size: 14px;
}

.dashboard .activity .activity-item .activite-label {
    color: var(--grey-color);
    position: relative;
    flex-shrink: 0;
    flex-grow: 0;
    min-width: 64px;
}

.dashboard .activity .activity-item .activite-label::before {
    content: "";
    position: absolute;
    right: -11px;
    width: 4px;
    top: 0;
    bottom: 0;
    background-color: var(--light-color);
}

.dashboard .activity .activity-item .activity-badge {
    margin-top: 3px;
    z-index: 1;
    font-size: 11px;
    line-height: 0;
    border-radius: 50%;
    flex-shrink: 0;
    border: 3px solid var(--white-color);
    flex-grow: 0;
}

.dashboard .activity .activity-item .activity-content {
    padding-left: 10px;
    padding-bottom: 20px;
}

.dashboard .activity .activity-item:first-child .activite-label::before {
    top: 5px;
}

.dashboard .activity .activity-item:last-child .activity-content {
    padding-bottom: 0;
}

/* News & Updates */
.dashboard .news .post-item + .post-item {
    margin-top: 15px;
}

.dashboard .news img {
    width: 80px;
    float: left;
    border-radius: 5px;
}

.dashboard .news h4 {
    font-size: 15px;
    margin-left: 95px;
    font-weight: bold;
    margin-bottom: 5px;
}

.dashboard .news h4 a {
    color: var(--primary-color);
    transition: 0.3s;
    font-weight: 500;
}

.dashboard .news h4 a:hover {
    color: var(--primary-color);
}

.dashboard .news p {
    font-size: 14px;
    color: var(--grey-color);
    margin-left: 95px;
}

/* Recent Sales */
.dashboard .recent-sales {
    font-size: 14px;
}

.dashboard .recent-sales .table thead {
    background: var(--light-color);
}

.dashboard .recent-sales .table thead th {
    border: 0;
}

.dashboard .recent-sales .dataTable-top {
    padding: 0 0 10px 0;
}

.dashboard .recent-sales .dataTable-bottom {
    padding: 10px 0 0 0;
}

/* Top Selling */
.dashboard .top-selling {
    font-size: 14px;
}

.dashboard .top-selling .table thead {
    background: var(--light-color);
}

.dashboard .top-selling .table thead th {
    border: 0;
}

.dashboard .top-selling .table tbody td {
    vertical-align: middle;
}

.dashboard .top-selling img {
    border-radius: 5px;
    max-width: 60px;
}

/* Side Links */

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    box-sizing: border-box;
}

#social-share {
    position: fixed;
    bottom: 126px;
    right: 20px;
    z-index: 20;
    /*transitions with relative delay*/
}

#social-share div.social-open-menu .btn-share,
#social-share ul.social-itens .btn-share {
    position: relative;
    cursor: pointer;
    border-radius: 50%;
    color: var(--white-color);
    line-height: 1;
    outline: 0;
    border: 0;
    margin-top: 15px;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.24);
}

#social-share div.social-open-menu .btn-share:hover,
#social-share ul.social-itens .btn-share:hover {
    box-shadow:
        0 3px 6px rgba(0, 0, 0, 0.16),
        0 3px 6px rgba(0, 0, 0, 0.23);
}

#social-share ul.social-itens {
    list-style: none;
    text-decoration: none;
    text-align: center;
    position: relative;
    display: block;
    /* display: none; */
}

#social-share ul.social-itens .btn-share {
    width: 40px;
    height: 40px;
    /* transform: none; */
}

#social-share ul.social-itens .btn-share {
    background-color: var(--white-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

#social-share ul.social-itens.open .btn-share {
    transform: scale(1);
    opacity: 1;
    /* transform: translate(0px, -15px); */
}

#social-share ul.social-itens li {
    position: relative;
}

#social-share ul.social-itens li .btn-share {
    transform: scale(0);
    opacity: 0;
}

#social-share ul.social-itens li .btn-share-text {
    /* opacity: 0; */
    position: absolute;
    bottom: 15px;
    right: 100%;
    margin-right: 10px;
    min-width: 75px;
    border-radius: 2px;
    padding: 3px 4px;
    text-align: center;
    font-weight: 300;
    background: rgba(20, 20, 20, 0.7);
    color: var(--white-color);
    display: block;
    opacity: 0;
    /* transition: all 500ms ease-in-out  0.5s; */
}

#social-share ul.social-itens li:hover .btn-share-text {
    opacity: 1;
}

#social-share div.social-open-menu .btn-share {
    width: 45px;
    height: 45px;
    background-color: #2196f3;
}

#social-share .social-itens.open .social-item-1,
#social-share .social-itens.open .social-item-1 .btn-share-text {
    transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s;
}

#social-share .social-itens.hidden .social-item-1,
#social-share .social-itens.open .social-item-1 .btn-share-text {
    transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s;
}

#social-share .social-itens.open .social-item-2,
#social-share .social-itens.open .social-item-2 .btn-share-text {
    transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s;
}

#social-share .social-itens.hidden .social-item-2,
#social-share .social-itens.open .social-item-2 .btn-share-text {
    transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s;
}

#social-share .social-itens.open .social-item-3,
#social-share .social-itens.open .social-item-3 .btn-share-text {
    transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s;
}

#social-share .social-itens.hidden .social-item-3,
#social-share .social-itens.open .social-item-3 .btn-share-text {
    transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s;
}

#social-share .social-itens.open .social-item-4,
#social-share .social-itens.open .social-item-4 .btn-share-text {
    transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s;
}

#social-share .social-itens.hidden .social-item-4,
#social-share .social-itens.open .social-item-4 .btn-share-text {
    transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s;
}

.alert {
    background: transparent;
    height: 10px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    font-weight: 500;
    font-size: 15px;
    position: absolute;
    top: 30px;
    right: 30px;
    padding: 8px;
}

/* Flip */

/* .container {
    max-width: 1100px;
    margin: 0 auto;
} */

.tab-title {
    position: relative;
    z-index: 1;
    display: inline-block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 0px;
    padding-top: 0;
    padding-left: 0;
    font-size: 13px;
    cursor: pointer;
}

.tab-title span {
    display: block;
    background: rgba(255, 255, 255, 0.9);
}

.tab-title span span {
    text-transform: uppercase;
    color: var(--primary-color);
    border-radius: 20px;
    padding: 2px 20px;
    background-color: var(--white-color);
    border: 1px solid var(--primary-color);
    transition:
        background 0.3s,
        color 0.4s;
    -o-transition:
        background 0.3s,
        color 0.4s;
    -ms-transition:
        background 0.3s,
        color 0.4s;
    -moz-transition:
        background 0.3s,
        color 0.4s;
    -webkit-transition:
        background 0.3s,
        color 0.4s;
    background: var(--primary-color) 17;
    border-radius: 60px;
    border: 1px solid var(--primary-color) 1c;
}

.tab-title span span:hover {
    border: 1px solid var(--primary-color);
}

ul.tabber-cnt {
    list-style: none;
    position: relative;
    display: block;
    font-size: 13px;
    perspective: 2000px;
    -o-perspective: 2000px;
    -ms-perspective: 2000px;
    -moz-perspective: 2000px;
    -webkit-perspective: 2000px;
    perspective-origin: 50% 50%;
    -o-perspective-origin: 50% 50%;
    -ms-perspective-origin: 50% 50%;
    -moz-perspective-origin: 50% 50%;
    -webkit-perspective-origin: 50% 50%;
    padding: 0;
    text-align: left;
    margin-top: 0px;
}

ul.tabber-cnt li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-top: 3px solid var(--primary-color);
    padding: 10px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    opacity: 0;
    color: var(--black-color);
    -o-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -o-transition:
        opacity 0.8s,
        -o-transform 0.8s;
    -ms-transition:
        opacity 0.8s,
        -ms-transform 0.8s;
    -moz-transition:
        opacity 0.8s,
        -moz-transform 0.8s;
    -webkit-transition:
        opacity 0.8s,
        -webkit-transform 0.8s;
    -o-transform: rotateX(-90deg);
    -ms-transform: rotateX(-90deg);
    -moz-transform: rotateX(-90deg);
    -webkit-transform: rotateX(-90deg);
}

.tab-title.active span > span {
    margin-bottom: -1px;
    color: var(--white-color);
    background: var(--primary-color);
    transition: 0.5s;
}

ul.tabber-cnt li.tab-c.active {
    border-radius: 0 0 10px 10px;
    -o-transform: rotateX(0);
    -ms-transform: rotateX(0);
    -moz-transform: rotateX(0);
    -webkit-transform: rotateX(0);
    -o-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
    position: relative;
    z-index: 1;
    opacity: 1;
    margin-top: 5px;
}

ul.tabber-cnt li h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

ul.tabber-cnt li p {
    margin-top: 14px;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .tab-title {
        display: block;
        text-align: center;
    }

    ul.tabber-cnt li {
        width: 100%;
    }

    #progressbar {
        flex-wrap: wrap;
    }

    #progressbar li {
        list-style-type: none;
        font-size: 15px;
        width: 25%;
    }

    .punching-section {
        text-align: center;
    }
}

.card.info-card.grey-card {
    color: var(--primary-color);
    padding: 2px 10px;
    background: var(--primary-color) 17;
    border-radius: 6px;
    border: 2px solid var(--primary-color) 1c;
    font-size: 18px;
}

.punching-section .tab-title.active span span {
    margin-bottom: 0;
    border: 0;
    border-radius: 7px;
}

.punching-section b {
    font-weight: 600;
}

.date-calender .card-title {
    font-size: 14px;
    gap: 6px;
    line-height: 18px;
    color: var(--primary-color);
}

.punching-section .card-title span {
    color: var(--black-color);
}

.punchinout h5.card-title {
    font-size: 12px;
}

.punchinout h5.card-title span {
    font-size: 16px;
    color: var(--black-color);
    font-weight: 600;
}

/* .green-pattern{
    background: url("../images/green-pattern-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

} */
ul.tabber-cnt li h3 {
    font-size: 14px;
    line-height: 28px;
}

ul.tabber-cnt li p {
    font-size: 16px;
    line-height: 22px;
}

thead,
thead .tablehead {
    background-color: var(--light-color);
}

/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/
.iconslist {
    display: grid;
    max-width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    padding-top: 15px;
}

.iconslist .icon {
    background-color: var(--white-color);
    border-radius: 0.25rem;
    text-align: center;
    color: var(--primary-color);
    padding: 15px 0;
}

.iconslist i {
    margin: 0.25rem;
    font-size: 2.5rem;
}

.iconslist .label {
    font-family: var(--bs-font-monospace);
    display: inline-block;
    width: 100%;
    overflow: hidden;
    padding: 0.25rem;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #666;
}

/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/
.profile .profile-card img {
    max-width: 120px;
}

.profile .profile-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark-color);
    margin: 10px 0 0 0;
}

.profile .profile-card h3 {
    font-size: 18px;
}

.profile .profile-card .social-links a {
    font-size: 20px;
    display: inline-block;
    color: rgba(1, 41, 112, 0.5);
    line-height: 0;
    margin-right: 10px;
    transition: 0.3s;
}

.profile .profile-card .social-links a:hover {
    color: var(--primary-color);
}

.profile .profile-overview .row {
    margin-bottom: 20px;
    font-size: 15px;
}

.profile .profile-overview .card-title {
    color: var(--primary-color);
}

.profile .profile-overview .label {
    font-weight: 600;
    color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
    font-weight: 600;
    color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
    max-width: 120px;
}

/*--------------------------------------------------------------
# F.A.Q Page
--------------------------------------------------------------*/
.faq .basic h6 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.faq .basic p {
    color: #6980aa;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    padding: 28px 30px;
}

.contact .info-box i {
    font-size: 38px;
    line-height: 0;
    color: var(--primary-color);
}

.contact .info-box h3 {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 700;
    margin: 20px 0 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .php-email-form .error-message {
    display: none;
    color: var(--white-color);
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact .php-email-form .sent-message {
    display: none;
    color: var(--white-color);
    background: #18d26e;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: var(--white-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 0;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--primary-color);
}

.contact .php-email-form input {
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
    background: var(--primary-color);
    border: 0;
    padding: 10px 30px;
    color: var(--white-color);
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #5969f3;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

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

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

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

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
    padding: 30px;
}

.error-404 h1 {
    font-size: 180px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 150px;
}

.error-404 h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.error-404 .btn {
    background: color-mix(in srgb, var(--primary-color), transparent 60%);
    color: var(--white-color);
    padding: 8px 30px;
}

.error-404 .btn:hover {
    background: color-mix(
        in srgb,
        var(--primary-color),
        var(--primary-color) 60%
    );
}

@media (min-width: 992px) {
    .error-404 img {
        max-width: 50%;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    padding: 20px 0;
    font-size: 14px;
    transition: all 0.3s;
    border-top: 1px solid var(--light-color);
    flex-wrap: wrap;
}

.footer .copyright {
    text-align: center;
    color: var(--primary-color);
}

.footer .credits {
    padding-top: 5px;
    text-align: center;
    font-size: 13px;
    color: var(--primary-color);
}

/*--------------------------------------- UTEK Start-------------------------------------------------------------*/
.AddBtn {
    background-color: var(--primary-color);
    color: var(--white-color);
    white-space: nowrap;
}

.AddBtn:focus {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.AddBtn:hover {
    background-color: color-mix(in srgb, var(--primary-color), transparent 80%);
    color: var(--primary-color);
}

.bounce:hover {
    animation-name: bounce;
    animation-timing-function: ease;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-50px);
    }

    100% {
        transform: translateY(0);
    }
}

.pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: var(--bs-link-color);
    --bs-pagination-bg: var(--white-color);
    --bs-pagination-border-width: 1px;
    --bs-pagination-border-color: #dee2e6;
    --bs-pagination-border-radius: 0.375rem;
    --bs-pagination-hover-color: var(--bs-link-hover-color);
    --bs-pagination-hover-bg: #e9ecef;
    --bs-pagination-hover-border-color: #dee2e6;
    --bs-pagination-focus-color: var(--bs-link-hover-color);
    --bs-pagination-focus-bg: #e9ecef;
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-pagination-active-color: var(--white-color);
    --bs-pagination-active-bg: var(--primary-color);
    --bs-pagination-active-border-color: var(--primary-color);
    --bs-pagination-disabled-color: #6c757d;
    --bs-pagination-disabled-bg: var(--white-color);
    --bs-pagination-disabled-border-color: #dee2e6;
    display: flex;
    padding-left: 0;
    list-style: none;
}

.ivragentsetting.btn {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: color-mix(in srgb, #2884b2, transparent 80%);
    color: #2884b2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    position: relative;
}

.view.btn {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: color-mix(in srgb, var(--primary-color), transparent 80%);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    position: relative;
}

.edit.btn {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: color-mix(in srgb, #ffc107, transparent 80%);
    color: #ffc107;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    position: relative;
}

.delete.btn {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: color-mix(in srgb, #de4436, transparent 80%);
    color: #de4436;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    position: relative;
}

.view.btn:hover {
    background: #0d6efd;
    color: var(--white-color) !important;
}

.edit.btn:hover {
    background: #ffc107;
    color: var(--white-color) !important;
}

.delete.btn:hover {
    background: #de4436;
    color: var(--white-color) !important;
}

.serachBtn {
    background-color: var(--primary-color);
    color: var(--white-color);
    width: 150px;
}

.statusBtn {
    background-color: var(--light-color) !important;
    color: var(--primary-color) !important;
    border: none;
    border-radius: 20px;
    width: 50px;
    height: 50px;
}

.actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2;
}

tr:hover {
    background: var(--light-color) !important;
    --bs-table-hover-bg: var(--light-color) !important;
}

.contitle {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--white-color);
}

.btn-success {
    background-color: green !important;
    border-color: green !important;
}

.btn-success:hover {
    background-color: color-mix(in srgb, green, transparent 20%) !important;
    border-color: green !important;
    color: var(--white-color);
}

.tablehead {
    background-color: var(--light-color);
    color: var(--primary-dark-color);
}

/* .inputlabel {
  font-size: 13px;
}

.inputfield {
  font-size: 13px;
  color: var(--black-color);
} */

.savebtn {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 10px;
    border: none;
}

.savebtn:focus {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 10px;
    border: none;
}

.savebtn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.responsebtn {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.responsebtn:focus {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.responsebtn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.toogle_responsebtn.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.toogle_responsebtn:focus {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.toogle_responsebtn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.toogle_responsebtn {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.modelhead {
    background-color: var(--light-color);
    color: var(--black-color);
}

.naveside {
    padding-left: 70px;
}

.navop {
    border: none;
    background-color: transparent;
    font-size: 18px;
    font-weight: bolder;
    text-decoration: underline;
}

.navop:focus {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
}

.navop.active {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
}

.accourdbtn {
    background-color: var(--grey-color);
}

.subheading {
    background-color: var(--light-color);
}

.btn-secondary {
    --bs-btn-color: var(--white-color);
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--light-color);
    --bs-btn-hover-color: var(--white-color);
    --bs-btn-hover-bg: var(--primary-color);
    --bs-btn-hover-border-color: var(--primary-color);
    --bs-btn-focus-shadow-rgb: 130, 138, 145;
    --bs-btn-active-color: var(--white-color);
    --bs-btn-active-bg: var(--primary-color);
    --bs-btn-active-border-color: var(--primary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--white-color);
    --bs-btn-disabled-bg: var(--primary-color);
    --bs-btn-disabled-border-color: var(--primary-color);
}

.searchcolumn {
    border: none;
    border-bottom: 1px solid var(--primary-color);
    outline: none;
    width: 57px;
}

.exporticons {
    vertical-align: middle;
    background-color: var(--light-color);
    border: none;
    border-radius: 5px;
}

.exporticons:hover {
    background-color: var(--primary-color);
    border: none;
}

.bottom {
    display: flex;
    justify-content: space-between;
}

.MasterTable .filters {
    background-color: var(--white-color);
}

.MasterTable td {
    text-align: center;
}

.MasterTable td .actions button {
    padding: 0;
    margin: 0;
}

.MasterTable td .actions button i {
    vertical-align: middle;
}

.MasterTable td .actions button {
    border: 1px solid transparent;
}

/* .MasterTable .filters{
  border: none;
  border-radius: 10px;
} */

.btn_reset {
    background-color: var(--light-color);
}

.formheading {
    background-color: var(--light-color);
    border-radius: 0px;
    color: var(--primary-color);
}

.formheading h5 {
    font-size: 16px;
}

.error {
    color: rgb(255, 0, 0);
}

.loader {
    height: 70vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.update_hover {
    text-decoration: none !important;
    border: none !important;
}

/*--------------------------------------- UTEK End-------------------------------------------------------------*/

/*--------------------------------------- Task Start-------------------------------------------------------------*/

.taskbg {
    background-color: var(--light-color);
    border-radius: 5px;
}

.taskcard {
    background-color: #f5dfc7;
    border-radius: 10px;
}

.tasktime {
    font-size: 12px;
}

.StartBtns {
    font-size: 12px;
}

.taskdropdown {
    border-radius: 20px;
    font-size: 12px;
}

.dashboardmain {
    padding: 20px;
}

.tasknotstart {
    background-color: #e413dd;
    padding: 10px;
    color: var(--white-color);
    border-radius: 10px 10px 0px 0px;
}

.taskprogress {
    background-color: #13a8e4;
    padding: 10px;
    color: var(--white-color);
    border-radius: 10px 10px 0px 0px;
}

.taskhold {
    background-color: #fd8b33;
    padding: 10px;
    color: var(--white-color);
    border-radius: 10px 10px 0px 0px;
}

.taskcompleted {
    background-color: #21e413;
    padding: 10px;
    color: var(--white-color);
    border-radius: 10px 10px 0px 0px;
}

.viewtaskcard {
    background-color: rgb(255, 248, 248);
    border: none;
    border-radius: 10px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.viewtaskcarddetail {
    background-color: var(--white-color);
    border: none;
    border-radius: 10px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.taskdue {
    font-size: 13px;
    margin-bottom: 0;
}

.taskstartborder {
    border-top: 2px solid #e413dd;
}

.taskprogressborder {
    border-top: 2px solid #13a8e4;
}

.taskholdborder {
    border-top: 2px solid #fd8b33;
}

.taskcompletedborder {
    border-top: 2px solid #21e413;
}

.offcanvas {
    width: 50% !important;
}

.taskdatesec {
    background-color: var(--light-color);
    height: 100vh;
}

.taskcomplete {
    background-color: var(--white-color);
    color: rgb(131, 219, 117);
    border-color: var(--black-color);
}

.taskcomplete:focus {
    background-color: rgb(167, 243, 156);
    color: var(--black-color);
    border-color: var(--black-color);
}

.taskiconnav {
    text-decoration: none;
    color: var(--black-color);
}

/*--------------------------------------- Task End-------------------------------------------------------------*/

/*--------------------------------------- Assign Staff Start-------------------------------------------------------------*/
.assigncard {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 500;
}

.assignenqry-card {
    background-color: var(--light-color);
    border-radius: 10px;
    color: var(--primary-color);
}

.assigned-card {
    background-color: var(--light-color);
    border-radius: 10px;
    color: var(--primary-color);
}

.unassign-card {
    background-color: var(--light-color);
    border-radius: 10px;
    color: var(--primary-color);
}

.assignbtn {
    background-color: var(--primary-color);
    border-radius: 10px;
    border: transparent;
    color: var(--white-color);
    padding: 10px 20px;
}

.assignbtn:hover {
    background-color: #dbccec;
}

.assignbtn:focus {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.assigndrop {
    border-radius: 5px;
}

.stafasgntble {
    height: 40%;
}

.assignimage {
    border-radius: 50%;
}

.duplicate-card {
    background-color: #c7f9cc;
    border-radius: 10px;
    color: var(--white-color);
}

.duplicateview-card {
    background-color: #f5cac3;
    border-radius: 10px;
    color: var(--white-color);
}

.followpcontainer {
    max-width: 1321px;
    height: 84px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
    text-align: center;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
    text-align: center;
}

.modal-header .btn-close:hover {
    font-size: 20px;
}

/*--------------------------------------- Assign Staff End-------------------------------------------------------------*/
.m-integrations__content > p {
    text-align: left;
    max-width: none;
    margin: 0;
    font-size: 0.875rem;
}

.c-integration {
    width: 100%;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
}

.c-integration__tile {
    position: relative;
    background-color: var(--white-color);
    height: 100%;
}

.c-integration__tile .c-integration__link {
    color: #6e6c6c;
    text-decoration: none;
    padding: 1.5rem 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    text-align: left;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 3px;
    transition: all 0.2s ease-in-out;
    transition-property: box-shadow;
}

.c-integration__tile .c-integration__link:focus,
.c-integration__tile .c-integration__link:hover,
.c-integration__tile .c-integration__link:active {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 10px;
}

.c-integration__tile .c-integration__link:focus .c-integration__zapier,
.c-integration__tile .c-integration__link:hover .c-integration__zapier,
.c-integration__tile .c-integration__link:active .c-integration__zapier {
    color: var(--white-color);
}

.c-integration__tile .c-integration__link:focus .c-integration__zapier::before,
.c-integration__tile .c-integration__link:hover .c-integration__zapier::before,
.c-integration__tile
    .c-integration__link:active
    .c-integration__zapier::before {
    top: -6rem;
    right: -5.5rem;
}

.c-integration__tile
    .c-integration__link:focus
    .c-integration__zapier
    p.c-integration__status,
.c-integration__tile
    .c-integration__link:hover
    .c-integration__zapier
    p.c-integration__status,
.c-integration__tile
    .c-integration__link:active
    .c-integration__zapier
    p.c-integration__status {
    color: #3a3a3a;
    opacity: 1;
}

.c-integration__tile p {
    display: block;
    margin: 0;
    font-size: 0.875rem;
    color: #3a3a3a;
    flex-grow: 1;
    text-align: left;
}

p.c-integration__cats {
    text-align: left;
    padding-top: 1rem;
    color: #6e6c6c;
    font-size: 0.75rem;
    flex-grow: 0;
    margin-top: 1rem;
    border-top: 1px solid #efefef;
    line-height: 1.1;
}

.c-integration__header {
    position: relative;
    display: flex;
    flex-direction: row;
    margin-bottom: 1rem;
    align-items: center;
}

.c-integration__header h3 {
    font-size: 1rem;
    margin: 0;
    color: #3a3a3a;
    flex-grow: 1;
    padding-right: 3.25rem;
}

p.c-integration__description {
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0;
    max-width: none;
    text-align: left;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3.0625rem;
}

.c-integration__img {
    display: inline-block;
    width: 2rem;
    height: auto;
    max-height: 2rem;
    margin: 0 1rem 0 0;
}

.c-integration__zapier {
    overflow: hidden;
    text-decoration: none;
    color: #ff4a00;
    position: absolute;
    top: 0;
    right: 0;
    width: 5rem;
    height: 5rem;
    padding: 0;
    background: rgba(0, 0, 0, 0);
    transition: color 0.2s ease 0.1s;
}

.c-integration__zapier::before {
    content: "";
    width: 10rem;
    height: 10rem;
    position: absolute;
    top: -10rem;
    right: -10rem;
    border-radius: 1.75rem;
    background: var(--white-color) 3e6;
    transition: all 0.2s ease-in-out;
    transition-property: top, right;
    z-index: 1;
}

.c-integration__zapier i {
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    z-index: 2;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    transition: all 0.2s ease-in-out;
    transition-property: right;
}

p.c-integration__status {
    opacity: 0;
    position: absolute;
    z-index: 2;
    top: 0.5rem;
    right: -0.5rem;
    left: 0;
    color: var(--white-color);
    transition: opacity 0.2s ease 0.1s;
    text-align: center;
    font-size: 0.75rem;
    text-decoration: none;
}

.c-integration__logo-partners {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.c-integration__plus {
    font-size: 3rem;
    padding: 0 1rem;
    color: #e66760;
}

@media screen and (min-width: 768px) {
    .c-integration__grid {
        display: flex;
        flex-direction: row;
        margin: 0 -1.5rem;
        width: calc(100% + 3rem);
    }
}

.c-integration__col {
    width: 100%;
    padding: 1.5rem;
    border-top: 1px solid #d2d2d2;
}

.c-integration__col:first-of-type {
    border-top: none;
}

@media screen and (min-width: 768px) {
    .c-integration__col {
        width: 50%;
        padding: 1.5rem 3rem;
        border-left: 1px solid #d2d2d2;
        border-top: none;
    }

    .c-integration__col:first-of-type {
        border-left: none;
    }
}

.c-integration__col .c-integration__img {
    margin: 0;
}

.c-integration__col h3 {
    margin-top: 0.5rem;
}

.c-integration__col p {
    font-size: 1rem;
}

@media screen and (min-width: 768px) {
    .m-integrations > .container {
        display: flex;
        padding-top: 0;
    }

    .m-integrations__content {
        width: 72.5%;
    }

    .m-integrations__sidebar {
        margin-top: 0;
        width: 27.5%;
        padding-right: 3rem;
    }

    .c-integration {
        width: 50%;
    }
}

@media screen and (min-width: 1200px) {
    .c-integration {
        width: 33.33%;
    }
}

.m-comp-text__cols {
    text-align: left;
    margin: 3rem 0;
}

@media screen and (min-width: 768px) {
    .m-comp-text__cols {
        display: flex;
        margin-left: -3rem;
        margin-right: -3rem;
    }
}

.m-comp-text__col {
    width: 100%;
    margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {
    .m-comp-text__col {
        width: 50%;
        margin-bottom: 0;
        border-right: 1px solid #d2d2d2;
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .m-comp-text__col:last-of-type {
        border-right: none;
    }
}

@media screen and (min-width: 768px) {
    .m-comp-text__cols--3 .m-comp-text__col {
        width: 33.33%;
    }
}

@media screen and (min-width: 768px) {
    .m-comp-text__cols--4 .m-comp-text__col {
        width: 25%;
    }
}

.m-comp-text__logo-container {
    height: 4.5rem;
    line-height: 4.5rem;
}

.m-comp-text__logo {
    vertical-align: middle;
    display: inline-block;
    margin-bottom: 0.5rem;
    max-width: 100%;
    max-height: 4.5rem;
}

.m-comp-text__feature-intro {
    font-weight: 600;
    margin-bottom: 1rem;
}

.m-comp-text__feature {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1rem;
}

.m-comp-text__feature .c-check {
    position: absolute;
    top: 0;
    left: 0;
}

.history {
    position: absolute;
    left: -0.5rem;
    top: 0.75rem;
    z-index: 2;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    transition: all 0.2s ease-in-out;
    transition-property: right;
}

.followup {
    border-radius: 10px;
    box-shadow: 0px 0 30px rgba(190, 191, 193, 0.1);
}

.followupfooterimg:hover {
    transform: scale(1.2);
    /* Increase the size of the image */
    transition: transform 0.1s ease;
    /* Add a smooth transition effect */
    cursor: pointer;
}

.datetoarrow {
    vertical-align: middle;
}

/* .parent-icon{
  margin-left: 481px;
} */

.EnquiryLink:hover {
    color: #1c5fdd;
}

.text-right {
    text-align: right;
}

#SearchBar {
    width: 50%;
}

.table-responsive th {
    white-space: nowrap;
}

.Followupresponsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
    height: 90vh;
}

.Followupresponsive thead.tablehead {
    position: sticky;
    top: 0;
}

.follow-up-list-view button {
    background: var(--white-color);
    color: #878787;
    height: 35px;
    font-size: 15px;
    width: 35px;
    border: 1px solid #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: none !important;
}

.follow-up-list-view button:hover {
    color: var(--primary-dark-color);
    background: var(--white-color);
    box-shadow: none !important;
}

.adminButton {
    animation: float 1s ease-in-out infinite;
}

div#FeedbackInOffcanvas.offcanvas {
    width: 75% !important;
}

.AddTaskicon i:hover {
    transform: scale(1.2);
    transition: transform 0.1s ease;
    cursor: pointer;
}

@keyframes float {
    0% {
        -webkit-transform: translate(2px, 1px) rotate(0deg);
    }

    10% {
        -webkit-transform: translate(-1px, -2px) rotate(-2deg);
    }

    20% {
        -webkit-transform: translate(-3px, 0px) rotate(3deg);
    }

    30% {
        -webkit-transform: translate(0px, 2px) rotate(0deg);
    }

    40% {
        -webkit-transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        -webkit-transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        -webkit-transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        -webkit-transform: translate(2px, 1px) rotate(-2deg);
    }

    80% {
        -webkit-transform: translate(-1px, -1px) rotate(4deg);
    }

    90% {
        -webkit-transform: translate(2px, 2px) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(1px, -2px) rotate(-1deg);
    }
}

table.Cardtable {
    border-collapse: collapse;
    width: 100%;
}

.Cardtable td,
.Cardtable th {
    border: 0px solid;
    text-align: left !important;
    padding: 5px;
}

.card-white-bg {
    background: var(--light-color);
    padding: 15px;
    border-radius: 10px;
    box-shadow: none;
}

.card-white-bg th {
    color: #707070;

    font-size: 12px;
}

.card-edit-section {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* .mob-edit-btn,
.mob-edit-btn:hover {
    background: #bdbdff;
    color: var(--primary-color);
    font-size: 16px;
}
.mob-delete-btn,
.mob-delete-btn:hover {
    background: rgb(255, 185, 185);
    color: red;
    font-size: 16px;
} */
.Cardtable td span {
    font-weight: 600;
}

.tablelapView {
    display: block;
}

.cardMobileview {
    display: none;
}

button#next {
    border: 0;
    background: var(--primary-color);
    padding: 6px 16px;
    color: var(--white-color);
    border-radius: 6px;
}

.loadMorecard {
    display: none;
}

.sticky-row {
    position: sticky;
    top: 70px;
    z-index: 1;
    background-color: var(--white-color);
}

.view-task-card {
    position: relative;
    border-radius: 0px;
    border: 0;
}

.task-details.time {
    background: var(--light-color);
    padding: 10px;
}

span.status {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 10px;
}

.task-details h6 {
    color: var(--primary-dark-color);
    font-size: 11px;
}

.task-details h3 {
    color: var(--black-color);
    font-size: 16px;
}

.task-details.time h3 {
    font-size: 11px;
}

.search-results-card-container-mob {
    display: none;
}

.follow-up-list-view button.active {
    color: var(--primary-dark-color);
}

.ImportButton {
    text-align: center;
}

.imported-card .task-details {
    margin: 28px 0;
    border-bottom: 1px solid var(--primary-color);
}

.tablelapViewInImport {
    display: inline-table;
}

.carditem {
    border: none;
    padding: 10px;
    border-radius: 100px;
    background-color: var(--white-color);
    color: var(--primary-dark-color);
    font-size: 1.3em;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    padding: 5px;
    margin-bottom: 20px;
}

.carditem h3 {
    margin: 0;
    color: var(--primary-dark-color);
    display: flex;
}

.carditem h3 span {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-light-color);
}

.calendar {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    padding: 5px 20px;
    background: var(--white-color);
    border-radius: 100px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.calendar img {
    width: 18px;
}

.Staffpunching {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.employeeInfo {
    background: linear-gradient(
        90deg,
        rgba(2, 0, 36, 1) 0%,
        rgba(9, 9, 121, 1) 35%,
        rgb(9 21 129) 100%
    );
    padding: 30px;
    border-radius: 20px;
    color: var(--white-color);
    text-align: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-top: 20px;
}

img.employeePicture {
    width: 100px;
    height: 100px;
    border: 3px solid var(--white-color);
    background: var(--white-color);
    border-radius: 100px;
}

.card.PunchIncard {
    display: flex;
    justify-content: center;
    text-align: center;
}

button.punchbutton {
    border: 0px;
    padding: 30px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.PunchIncard span {
    font-weight: 700;
    color: var(--primary-color);
}

.employeeInfo h3 {
    font-size: 14px;
    margin-top: 30px;
}

.date-section {
    display: flex;
    align-items: center;
    align-content: center;
    padding: -2px 15px;
    border: 1px solid var(--primary-color);
    font-size: 14px;
    border-radius: 100px;
    color: var(--primary-color);
}

.date-section i {
    margin-right: 10px;
}

.card-view h6 {
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 0px;
}

.card-view h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0px;
}

.student-image {
    align-items: center;
}

.fee-report-content {
    border: 1px solid var(--grey-color);
    padding: 10px;
}

.fee-report-content .total {
    background: var(--light-color);
    padding: 10px;
}

.fee-report-body .sub-total {
    background: var(--grey-color);
    padding: 10px;
}

.fee-report-mobile {
    display: none;
}

.fee-report-desktop {
    display: block;
}

.pagetitle-dashboard {
    justify-content: space-between;
    align-items: center;
    background: none;
}

.sidebar-nav .nav-profile img {
    height: 100px;
    width: 100px;
    object-fit: cover;
    border: 4px solid var(--white-color);
    box-shadow:
        rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
        rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.sidebar-nav .nav-profile h6 {
    font-weight: 500;
    font-size: 18px;
    margin-top: 6px;
    color: var(--white-color);
}

a.nav-link.nav-profile,
a.nav-link.nav-profile:hover {
    padding: 12px 0px;
    /* background: linear-gradient(45deg, #69a721, var(--primary-color)); */
    border: 0px;
}

.sidebar-nav .nav-profile h5 {
    font-weight: 600;
    font-size: 16px;
    color: var(--black-color) e27;
}

.user-nav {
    justify-items: center;
}

label.comleted {
    text-decoration: line-through;
    color: #6c6c6c;
}

.landing-img-side img {
    object-fit: cover;
}

.landing .card-body {
    padding: 6px;
    display: grid;
    justify-items: center;
}

.landing-icon {
    padding: 6px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--primary-color);
    justify-content: center;
    margin-right: 20px;
}

.landing-icon.arrow {
    border-right: 0px;
    margin-right: 0px;
}

.landing-icon img {
    width: 40px;
}

.landing-icon.super-admin {
    background: var(--primary-color) 30;
}

.landing-icon.admin {
    background: #2eca6a30;
}

.landing-icon.teacher {
    background: #ff771d33;
}

.landing-icon.student {
    background: #f9c75861;
}

.landing a {
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
}

/* .landing .card-title {
    color: var(--white-color);
} */
.landing a:hover {
    color: #5969f3;
}

.login-bg {
    height: 100vh;
    overflow: hidden;
    background: url(../images/login-bg-section.png) no-repeat;
    background-position: center;
    background-size: cover;
}

.login-bg .content {
    position: relative;
    z-index: 2;
    /* Ensure content is above the overlay */
}

.card.login {
    box-shadow: color-mix(in srgb, var(--primary-color), transparent 80%) 0px
        0px 23px;
    border-radius: 10px 60px 60px 10px;
}

.login {
    z-index: 99;
}

.register.landing {
    /* z-index: 9999;
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3); */
}

.login-page-new__main-bg {
    position: absolute;
    height: calc(100% - 17vh);
    width: 100%;
    top: 17vh;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    background: url(../images/green-bg.svg) center 10px no-repeat;
    background-size: cover;
    z-index: 11;
}

.login-page-new__main-bg:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../images/curve-shape.png) center top no-repeat;
    background-size: 100%;
}

.login-intro {
    /* background: url(../images/green-bg.svg); */
    height: 80vh;
    position: absolute;
    left: 20px;
    right: 0px;
    bottom: -20px;
    top: -20px;
    margin: auto;
    padding: 60px 60px;
    background-size: cover;
    background-position: center;
    border-radius: 20px 20px 200px 20px;
    box-shadow: color-mix(in srgb, var(--primary-color), transparent 80%) 0px
        0px 23px;
    background-color: white;
    /* background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--primary-dark-color)
    ); */
}

.login-intro h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 56px;
    color: var(--white-color);
    font-family: "Poppins", sans-serif;
}

.login-intro p {
    font-size: 20px;
    color: var(--white-color);
}

.logo-section {
    background: var(--white-color);
    padding: 15px;
    border-radius: 20px;
    box-shadow:
        rgb(204, 219, 232) 3px 3px 6px 0px inset,
        rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
    text-align: center;
    margin-bottom: 40px;
}

.logo-section img {
    width: 70%;
    object-fit: fill;
}

.form-control,
.form-select {
    display: block;
    width: 100% !important;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: var(--white-color);
    background-clip: padding-box;
    border: 1px solid var(--primary-light-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.375rem;
    transition:
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    white-space: nowrap;
    background-color: var(--white-color);
    border: 1px solid var(--primary-light-color);
    border-radius: 0.375rem;
}

.form-control:focus,
.form-check-input:focus,
button:focus:not(:focus-visible),
.form-select:focus {
    color: #212529;
    background-color: var(--white-color);
    border-color: color-mix(in srgb, var(--primary-color), transparent 0%);
    outline: 0;
    box-shadow: 0 0 0 0.25rem
        color-mix(in srgb, var(--primary-color), transparent 90%);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: color-mix(in srgb, var(--primary-color), transparent 65%);
}

.btn-primary {
    --bs-btn-color: var(--white-color);
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: var(--white-color);
    --bs-btn-hover-bg: var(--primary-color);
    --bs-btn-hover-border-color: var(--primary-color);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: var(--white-color);
    --bs-btn-active-bg: var(--primary-color);
    --bs-btn-active-border-color: var(--primary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--white-color);
    --bs-btn-disabled-bg: var(--primary-color);
    --bs-btn-disabled-border-color: var(--primary-color);
}

.breadcrumb-header {
    background: linear-gradient(
        45deg,
        var(--primary-dark-color),
        var(--primary-color)
    );
    height: 90px;
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .toggle-sidebar-btn {
    font-size: 32px;
    cursor: pointer;
    color: var(--white-color);
}

.form-select:focus {
    border-color: color-mix(in srgb, var(--primary-color), transparent 75%);
    outline: 0;
    box-shadow: 0 0 0 0.25rem
        color-mix(in srgb, var(--primary-color), transparent 90%);
}

.tablelapView .dataTables_length {
    display: none;
}

.dataTables_length label {
    width: 80px;
}

@media only screen and (max-width: 600px) {
    .bottom {
        display: grid;
        justify-content: center;
    }

    .fee-report-mobile {
        display: block;
    }

    .fee-report-desktop {
        display: none;
    }

    /* .parent-icon{
    margin-left: 0px;
  } */
    #SearchBar {
        width: 100%;
    }

    .dataTables_length {
        text-align: left !important;
        margin-bottom: 10px;
    }

    .dataTables_length label {
        width: 80px;
    }

    div#FeedbackInOffcanvas.offcanvas {
        width: 100%;
    }

    .tablelapView {
        display: none;
    }

    .cardMobileview {
        display: grid;
    }

    .loadMorecard {
        display: block;
    }

    .search-results-card-container-mob {
        display: block !important;
    }

    .ImportButton {
        text-align: end;
    }

    .pagetitle h1 {
        font-size: 16px;
    }

    .breadcrumb {
        font-size: 10px;
    }

    .tablelapViewInImport {
        display: none;
    }

    .floating-icon {
        display: block;
    }

    button.punchbutton {
        border: 0px;
        padding: 20px;
        border-radius: 100px;
        margin-bottom: 10px;
    }

    .carditem h3 span {
        font-size: 12px;
    }

    .calendar {
        padding: 10px 15px;
        font-size: 13px;
    }

    .carditem h3 {
        margin: 0;
        font-size: 18px;
    }

    .PunchIncard span {
        font-weight: 700;
        color: var(--primary-color);
        font-size: 14px;
        margin-bottom: 20px;
    }

    /* .mainContents {
        overflow: scroll;
    } */
    .subheading {
        flex-direction: column;
        align-items: flex-end;
    }

    .student-image {
        align-items: flex-start;
        flex-direction: column;
    }

    .pagetitle-dashboard {
        margin-top: 6px;
        justify-content: space-between;
        align-items: start;
    }

    .dashboard-filter {
        display: grid;
        gap: 10px;
        width: 100%;
    }

    .pagetitle {
        padding: 3px 5px !important;
    }

    .contitle {
        font-size: 14px;
    }

    .login-bg {
        height: 100%;
        overflow: scroll;
    }

    .landing-img-side {
        height: 35vh;
        display: none;
    }

    .landing .card-body {
        padding: 10px 10px 10px 10px;
    }

    .landing a {
        font-size: 12px;
    }

    .landing-icon {
        padding: 25px;
        border-radius: 100%;
        width: 70px;
        height: 70px;
    }

    .login-intro {
        height: 100%;
        position: relative;
        padding: 20px 20px;
        border-radius: 10px 10px 70px 10px;
        left: auto;
        right: auto;
        bottom: auto;
        top: auto;
    }

    .logo-section {
        margin-bottom: 10px;
    }

    .logo-section img {
        width: 80%;
    }

    .login-intro h3 {
        font-size: 24px;
        line-height: 28px;
    }

    .login-intro p {
        font-size: 16px;
    }

    .attendance-table {
        display: block;
    }
}

.active > .page-link,
.page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.page-link {
    color: var(--primary-color);
}

.page-link:hover {
    color: var(--primary-color);
}

button.btn-version {
    background: var(--primary-color);
    color: var(--white-color);
    border: 0px;
    font-size: 12px;
    font-weight: 600;
}

.visible-hidden {
    visibility: hidden;
}

.handover_icon {
    height: 38px;
    padding: 5px;
}

.follow-up-card,
.admission-card,
.staff-card {
    background: var(--light-color);
    border: 1px solidvar(--light-color);
}

.follow-up-card h6 {
    color: var(--primary-color);
}

.dashboard .info-card.sales-card.admission-card h5.card-title {
    font-size: 12px;
}

.dashboard .info-card.sales-card h5.card-title-main {
    font-size: 16px !important;
    min-height: 36px;
    line-height: 18px;
}

.admission-card h6 {
    font-size: 18px !important;
}

.dashboard .card-icon img {
    width: 66px;
    height: 66px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
}

.staff-status {
    padding: 2px 6px;
    font-size: 10px;
}

.active-staff {
    width: 10px;
    height: 10px;
    border-radius: 20px;
    box-shadow: 0px 0px 1px 1px var(--black-color) 1a;
    position: absolute;
    right: 10px;
    top: 10px;
    background: var(--primary-color);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
}

/* follow-up-new */

.followup-card-top {
    border-bottom: 2px solid #f6f9ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.followup-feedback {
    display: inline-flex;
    background: var(--primary-dark-color) 1a;
    color: var(--primary-dark-color);
    padding: 0px 10px;
    font-size: 10px;
    border-radius: 30px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1px;
}

.followup-content {
    min-height: 150px;
}

.followup {
    border-radius: 0px 0px 10px 10px;
    height: 100%;
}

.followup-content h6,
.offcanvas h6 {
    font-size: 12px;
    margin-bottom: 0px;
    color: #323232;
}

.followup-content h4,
.offcanvas h4 {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--black-color);
}

.offcanvas h4 {
    font-size: 14px;
}

.followup-call {
    background: #f0f4fc;
    padding: 6px;
    font-weight: 700;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 5px;
    font-size: 16px;
    letter-spacing: 1px;
}

a.CallButton {
    padding: 2px 16px;
    border-radius: 20px;
    /* background: var(--primary-dark-color); */
    color: #f0f4fc;
}

a.card_CallButton {
    background: var(--primary-dark-color) !important;
}

img.followupfooterimg {
    width: 34px;
}

.followup-card-top .NotFollowedIndicator,
.offcanvas .NotFollowedIndicator {
    background-color: #ffe2e2;
    color: #ee6666;
    padding: 0px 10px;
    font-size: 10px;
    border-radius: 30px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1px;
}

.followup-card-top .PendingIndicator,
.offcanvas .PendingIndicator {
    background-color: #ffeec9;
    color: #eaad2b;
    padding: 0px 10px;
    font-size: 10px;
    border-radius: 30px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1px;
}

.followup-card-top .TodaysFollowupIndicator,
.offcanvas .TodaysFollowupIndicator {
    background-color: #d8ffc5;
    color: #91cc75;
    padding: 0px 10px;
    font-size: 10px;
    border-radius: 30px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1px;
}

.followup-card-top .FollowupToDoIndicator,
.offcanvas .FollowupToDoIndicator {
    background-color: #c6d4ff;
    color: #5470c6;
    padding: 0px 10px;
    font-size: 10px;
    border-radius: 30px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1px;
}

.followup-card-top .RestoredIndicator,
.offcanvas .RestoredIndicator {
    background-color: #d9f4ff;
    color: #73c0de;
    padding: 0px 10px;
    font-size: 10px;
    border-radius: 30px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1px;
}

.followup.no-followup-yet {
    border-top: 5px solid #ee6666;
}

.followup.pending {
    border-top: 5px solid #eaad2b;
}

.followup.todays-followup {
    border-top: 5px solid #91cc75;
}

.followup.todo-followup {
    border-top: 5px solid #5470c6;
}

.followup.restored {
    border-top: 5px solid #73c0de;
}

.handover {
    color: #4f60f2;
}

.offcanvas.followup-detail-offcanvas {
    width: 50%;
}

button.btn-close-offcanvas {
    border: 0px;
    background: none;
    font-size: 20px;
}

.offcanvas-header {
    border-bottom: 2px solid #f6f9ff;
}

.canvas-bottom {
    background: #f6f9ff;
}

.canvas-bottom .nav-tabs-bordered .nav-link.active {
    background-color: #f6f9ff;
    color: var(--primary-dark-color);
    border-bottom: 2px solid var(--primary-dark-color);
}

.canvas-bottom .nav-tabs-bordered .nav-link {
    padding: 2px 15px;
}

.savebtn {
    background-color: var(--primary-dark-color);
    color: white;
    border-radius: 10px;
    border: none;
}

.savebtn:hover {
    background-color: var(--primary-dark-color);
    color: white;
}

.canvas-bottom th {
    font-size: 12px;
    font-weight: 700;
}

.canvas-bottom label {
    font-size: 11px;
}

.canvas-bottom .form-select,
.canvas-bottom .form-control {
    font-size: 14px;
    padding: 3px 6px;
}

.canvas-bottom {
    font-size: 14px;
}

.offcanvas-header a {
    font-size: 16px;
}

@media only screen and (max-width: 600px) {
    .offcanvas.followup-detail-offcanvas {
        width: 95%;
    }
}

.table-pin {
    cursor: pointer;
}

.batch-card td,
.batch-card th {
    text-align: left;
}

.add-batch-plus {
    width: 100%;
    height: 100%;
    background: color-mix(in srgb, #f34235, #fff 90%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 10px;
    cursor: pointer;
    color: #f34235;
}

.add-batch-plus:hover {
    background: #f34235;
    color: var(--white-color);
}

.btn-del {
    background: color-mix(in srgb, #f34235, #fff 90%);
    color: #f34235;
    border-color: #f34235;
}

.btn-primary-g {
    background: color-mix(in srgb, var(--primary-color), #fff 90%);
    color: var(--primary-color);
}

.btn-del {
    background: color-mix(in srgb, #f34235, #fff 90%);
    color: #f34235;
    border-color: #f34235;
}

.btn-del:hover {
    background: #f34235;
    color: var(--white-color);
    border-color: #f34235;
}

.bg-utek-g {
    background: var(--primary-light-color);
}

.user-profile {
    text-align: end;
    display: flex;
    flex-direction: column;
}

.user-profile small {
    line-height: 10px;
    font-size: 12px;
}

.user-profile b {
    color: var(--primary-color);
}

* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

p {
    color: grey;
}

#heading {
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: normal;
}

#msform {
    text-align: center;
    position: relative;
    margin-top: 20px;
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative;
}

.form-card {
    text-align: left;
}

#msform fieldset:not(:first-of-type) {
    display: none;
}

#msform .action-button {
    width: 100px;
    background: var(--primary-color);
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 0px 10px 5px;
    float: right;
}

#msform .action-button:hover,
#msform .action-button:focus {
    background-color: #616161;
}

#msform .action-button-previous {
    width: 100px;
    background: #616161;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px 10px 0px;
    float: right;
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
    background-color: #000000;
}

.card {
    /* z-index: 0; */
    border: none;
    position: relative;
}

.fs-title {
    font-size: 25px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: normal;
    text-align: left;
}

.purple-text {
    color: var(--primary-color);
    font-weight: normal;
}

.steps {
    font-size: 25px;
    color: gray;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right;
}

.fieldlabels {
    color: gray;
    text-align: left;
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
}

#progressbar .active {
    color: var(--primary-color);
}

#progressbar li {
    list-style-type: none;
    font-size: 12px;
    width: 16.6%;
    float: left;
    position: relative;
    font-weight: 400;
}

#progressbar #contact:before {
    font-family: FontAwesome;
    content: "\f095";
}

#progressbar #personal:before {
    font-family: FontAwesome;
    content: "\f007";
}

#progressbar #academic:before {
    font-family: FontAwesome;
    content: "\f005";
}

#progressbar #admission:before {
    font-family: FontAwesome;
    content: "\f15c";
}

#progressbar #course:before {
    font-family: FontAwesome;
    content: "\f0a3";
}

#progressbar #additional:before {
    font-family: FontAwesome;
    content: "\f067";
}

#progressbar #confirm:before {
    font-family: FontAwesome;
    content: "\f00c";
}

#progressbar li:before {
    width: 40px;
    height: 40px;
    line-height: 38px;
    display: block;
    font-size: 16px;
    color: #ffffff;
    background: lightgray;
    border-radius: 10px;
    margin: 0 auto 10px auto;
    padding: 2px;
}

#progressbar li:after {
    content: "";
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 18px;
    z-index: -1;
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: var(--primary-color);
}

.progress {
    height: 20px;
}

.progress-bar {
    background-color: var(--primary-color);
}

.fit-image {
    width: 80%;
    object-fit: cover;
}

.upload-container {
    position: relative;
    width: 100%;
    height: 150px;
    border: 2px dashed var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fcfcfe;
    cursor: pointer;
    overflow: hidden;
    flex-direction: column;
    text-align: center;
}

.upload-container input {
    display: none;
}

.upload-container img,
.upload-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.upload-icon {
    font-size: 30px;
    color: var(--primary-dark-color);
    opacity: 0.8;
}

.pdf-preview {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    text-align: center;
}

.pdf-preview a {
    text-decoration: none;
    color: #007bff;
    font-size: 14px;
    margin-top: 5px;
}

button.btn.sample-btn.danger {
    border: 1px solid #d50101;
    color: #fff;
    background: #d50101;
    font-size: 12px;
}

.date-calender h3 {
    font-size: 40px;
    font-weight: 700;
}

.date-calender h6 {
    font-size: 12px;
    font-weight: 700;
    color: #636363;
}

.calender-selector {
    background: #f8f8f8;
    color: #545454;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    cursor: pointer;
}

.text-left {
    display: flex;
    justify-content: flex-end;
}

.user-in-out .in h6 {
    font-size: 12px;
    font-weight: 800;
    color: green;
}

.user-in-out .out h6 {
    font-size: 12px;
    font-weight: 800;
    color: red;
}

.in-out-box img {
    width: 40px;
    height: 40px;
    border-radius: 60px;
}

h4.time {
    font-size: 14px;
    font-weight: 700;
}

h5.distance {
    font-size: 12px;
}

.card-body.take-pic {
    background: #3232ff;
}

.take-pic-img {
    background: #3232ff;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 6px solid #fff;
    color: #fff;
    position: absolute;
    left: 0px;
    right: 0px;
    margin: auto;
    top: -22px;
}

.take-pic h6 {
    color: #fff;
    font-size: 10px;
}

.take-pic-location {
    font-size: 14px;
}

.date-calender h3 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
}

.date-calender h6 {
    font-size: 12px;
    font-weight: 700;
    color: #636363;
}

.puch-btn button {
    background: linear-gradient(45deg, #7cb539, #90c553);
    color: var(--primary-color);
    padding: 2px 10px;
    background: #90c55317;
    border-radius: 6px;
    border: 2px solid #90c5531c;
    font-size: 18px;
}

.puch-btn button:hover {
    background: linear-gradient(45deg, #7cb539, #90c553);
    color: #fff;
}

.punch-btn button:hover {
    background: linear-gradient(45deg, #90c553, #7cb539);
    box-shadow: #90c55385 0px 8px 24px;
}

#totalActiveDuration {
    display: inline-block;
    font-weight: 600;
    color: #000;
}

.whatsappBtns {
    position: fixed;
    top: 300px;
    right: 20px;
    z-index: 1000;
}

.task-container,
.completed-task-container {
    width: 100%;
}

.task,
.completed-task {
    background: #fff;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.completed-task {
    background: #d3ffd3;
}

.offcanvas {
    position: fixed;
    right: -100%;
    top: 0;
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    transition: 0.3s ease-in-out;
    overflow-y: auto;
}

.offcanvas.active {
    right: 0;
}

.add-task-btn {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #0078d4;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.star-btn {
    cursor: pointer;
    color: #012971;
    font-size: 18px;
    margin-right: 10px;
}

button.task-view-more {
    background: none;
    border: 0px;
}

.check-btn {
    cursor: pointer;
    font-size: 18px;
    border: 2px solid #012971;
    border-radius: 50%;
    padding: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-right: 10px;
}

.task span {
    display: flex;
}

.bottom-panel {
    bottom: -100%;
    left: 0;
    width: 100%;
    transition: 0.3s ease-in-out;
}

.bottom-panel.active {
    bottom: 0;
}

.task-counts {
    margin: 10px 0;
    font-weight: bold;
}

.add-subtask-btn {
    background: none;
    border: 0px;
    width: auto;
    color: #0078d4;
    font-weight: 600;
    font-size: 12px;
    text-align: left;
    margin-bottom: 0px;
}

span.high-priority {
    background: #ff6384;
    padding: 2px 11px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 11px;
    color: #fff;
    text-transform: uppercase;
}

span.medium-priority {
    background: #ffcd56;
    padding: 2px 11px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 11px;
    color: #fff;
    text-transform: uppercase;
}

span.low-priority {
    background: #2eca6a;
    padding: 2px 11px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 11px;
    color: #fff;
    text-transform: uppercase;
}

span.in-progress-status {
    background: #fff6e2;
    color: #f5bf42;
    padding: 2px 11px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    border: 0.5px solid #f5bf42;
}

span.to-do-status {
    background: #f6f6fe;
    color: #4154f1;
    padding: 2px 11px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    border: 0.5px solid #4154f1;
}

span.overdue-status {
    background: #fff1f6;
    color: #ff6384;
    padding: 2px 11px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    border: 0.5px solid #ff6384;
}

span.completed-status {
    background: #e0f8e9;
    color: #2eca6a;
    padding: 2px 11px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    border: 0.5px solid #2eca6a;
}

.input-container {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

.chat-container {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 4px solid #f6f9ff;
}

.chat-header {
    background: #0b785f;
    color: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.chat-header .header-info {
    flex-grow: 1;
    margin-left: 8px;
}

.chat-header .header-info .name {
    font-weight: bold;
}

.chat-header .header-info .status {
    font-size: 12px;
    color: #d0f0c0;
}

.chat-header .icons {
    display: flex;
    gap: 12px;
    font-size: 16px;
    align-content: center;
    align-items: center;
}

.chat-header .icons .video {
    font-size: 20px;
}

.chat-header .icons span {
    cursor: pointer;
}

.chat-body {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    background: #f5eed2;
}

.message {
    background: #fff;
    padding: 8px;
    border-radius: 10px;
    margin-bottom: 5px;
    align-self: flex-start;
    max-width: 70%;
    display: flex;
    flex-direction: column;
    /* box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); */
}

.message img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 5px;
}

.message p {
    margin-bottom: 0px;
}

.WhatsappOffCanvas {
    width: 400px !important;
    z-index: 9999;
}

.image_check_container {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding: 5px;
    border-radius: 10px;
    transition: border 0.3s ease-in-out;
}

.image_check_container input {
    display: none;
}

.image_check_container img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

.image_check_container input:checked + img {
    border: 3px solid var(--primary-color);
    box-shadow: 0px 0px 5px var(--primary-color);
}

table#deactivate_did_table {
    font-size: 18px;
}

.duplicate_detail {
    cursor: pointer;
    color: blue;
    background-color: #bef4f6;
    border-radius: 10px;
    padding: 4px;
}

.card-icon {
    /* background: #f6f9ff; */
    /* border: 1px dashed #01297063; */
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 4px;
}

.bulk_handover_button {
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.quick-panel img {
    height: 40px;
    /* position: fixed;
    right: 0px;
    bottom: 300px;
    z-index: 99; */
}

@media only screen and (max-width: 600px) {
    .dashboard .all-in-one-card .card-icon {
        width: 70px;
        height: 70px;
    }

    .dashboard .all-in-one-card .card-icon img {
        width: 36px;
    }

    .dashboard .all-in-one-card h6 {
        font-size: 10px;
    }
}

.scan-qr-code-bg {
    background: url("/assets/img/hero_bg.jpg") no-repeat center center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.quick-link-menu img {
    width: 26px;
    margin-top: 6px;
}

.quick-link-menu a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.quick-link-menu a span {
    color: #111;
}

.quick-link-menu a:hover {
    background: #0000000a !important;
    transform: scale(1.08);
    transition: all 0.5s ease-in-out;
    box-shadow: none !important;
    border-radius: 2px;
}

.quick-link-menu a.active {
    background: #0000000a !important;
    box-shadow: none !important;
    border-radius: 2px;
}

/* 16-04-2025 */

.filter-nav-tabs {
    gap: 10px;
    display: -webkit-box;
    /* width: 900px;
    overflow: scroll; */
}

.filter-nav-tabs::-webkit-scrollbar {
    height: 10px;
    width: 100%;
}

.filter-nav-tab img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.filter-nav-tab {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    gap: 6px;
    text-align: center;
    color: #fff;
    background: #0078d433;
    padding: 7px 20px 7px 10px;
    border: 1px solid #0078d454;
    border-radius: 30px;
    letter-spacing: 1px;
}

.filter-nav-tabs {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
}

/* Style the scrollbar */
.filter-nav-tabs::-webkit-scrollbar {
    height: 0px;
}

.filter-nav-tabs::-webkit-scrollbar-track {
    background: #f6f9ff;
    border-radius: 10px;
}

.filter-nav-tabs::-webkit-scrollbar-thumb {
    background: #0077d4;
    border-radius: 10px;
}

.filter-nav-tabs::-webkit-scrollbar-thumb:hover {
    background: #000e27;
}

.filter-nav-tab {
    flex: 0 0 auto;
    text-align: center;
    cursor: pointer;
}

.filter-nav-tab.lead {
    background: #fff;
    border: 1px solid #ff583329;
    color: #000000;
}

.filter-nav-tab.lead:hover {
    border: 1px solid #ff5833;
}

.filter-nav-tab.lead-followup {
    background: #fff;
    border: 1px solid #8e44ad29;
    color: #000000;
}

.filter-nav-tab.lead-followup:hover {
    border: 1px solid #8e44ad;
}

.filter-nav-tab.enquiry {
    background: #fff;
    border: 1px solid #1abc9c29;
    color: #000000;
}

.filter-nav-tab.enquiry:hover {
    border: 1px solid #1abc9c;
}

.filter-nav-tab.enquiry-followup {
    background: #fff;
    border: 1px solid #e74c3c29;
    color: #000000;
}

.filter-nav-tab.enquiry-followup:hover {
    border: 1px solid #e74c3c;
}

.filter-nav-tab.address-list {
    background: #fff;
    border: 1px solid #f1c40f29;
    color: #000000;
}

.filter-nav-tab.address-list:hover {
    border: 1px solid #f1c40f;
}

.filter-nav-tab.ivr-nav {
    background: #fff;
    border: 1px solid #ff583329;
    color: #000000;
}

.filter-nav-tab.ivr-nav:hover {
    border: 1px solid #ff5733;
}

.filter-nav-tab.meta-nav {
    background: #fff;
    border: 1px solid #2980b929;
    color: #000000;
}

.filter-nav-tab.meta-nav:hover {
    border: 1px solid #2980b9;
}

.filter-nav-tab.whatsapp-nav {
    background: #fff;
    border: 1px solid #27ae6029;
    color: #000000;
}

.filter-nav-tab.whatsapp-nav:hover {
    border: 1px solid #27ae60;
}

.main-all-in-one {
    background: color-mix(in srgb, var(--primary-color), transparent 95%);
}

/* 22-04-25 */
.select2-container--default .select2-selection--single {
    border-radius: 7px !important;
    padding: 20px 0px !important;
    border: 1px solid var(--primary-light-color) !important;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__placeholder {
    color: #181717 !important;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 14px !important;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow
    b {
    top: 84% !important;
}

/* 28.04.25 */
.import_lead_modalbg {
    background: rgb(198 212 210);
}

.lead_scroll_card {
    height: 100vh;
    overflow: scroll;
}

/* 16.06.25 */
.followup-actions a {
    width: 34px;
    height: 34px;
    background: #f0f4fc;
    border-radius: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.followup-actions img {
    width: 26px;
    height: 26px;
}

/* 17.06.25 */
.followup_count-btns {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.followup_count-btn {
    font-size: 14px;
    padding: 8px 14px;
    font-weight: 500;
    border-radius: 20px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.followup_count-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input[type="radio"]:checked + .followup_count-btn.today-btn {
    border: 5px solid color-mix(in srgb, #91cc75, #716969 50%);
    background-color: rgb(233 220 220);
}

input[type="radio"]:checked + .followup_count-btn.todo-btn {
    border: 5px solid color-mix(in srgb, #fac858, #716969 50%);
    background-color: rgb(233 220 220);
}

input[type="radio"]:checked + .followup_count-btn.pending-btn {
    border: 5px solid color-mix(in srgb, #ee6666, #716969 50%);
    background-color: rgb(233 220 220);
}

input[type="radio"]:checked + .followup_count-btn.done-btn {
    border: 5px solid color-mix(in srgb, #a875cc, #716969 50%);
    background-color: rgb(233 220 220);
}

input[type="radio"]:checked + .followup_count-btn.all-btn {
    border: 5px solid color-mix(in srgb, #3c6df4, #716969 50%);
    background-color: rgb(233 220 220);
}

input[type="checkbox"]:checked + .followup_count-btn.today-btn {
    border: 5px solid color-mix(in srgb, #91cc75, #716969 50%);
    background-color: rgb(233 220 220);
}

input[type="checkbox"]:checked + .followup_count-btn.todo-btn {
    border: 5px solid color-mix(in srgb, #fac858, #716969 50%);
    background-color: rgb(233 220 220);
}

input[type="checkbox"]:checked + .followup_count-btn.pending-btn {
    border: 5px solid color-mix(in srgb, #ee6666, #716969 50%);
    background-color: rgb(233 220 220);
}

input[type="checkbox"]:checked + .followup_count-btn.done-btn {
    border: 5px solid color-mix(in srgb, #a875cc, #716969 50%);
    background-color: rgb(233 220 220);
}

input[type="checkbox"]:checked + .followup_count-btn.all-btn {
    border: 5px solid color-mix(in srgb, #3c6df4, #716969 50%);
    background-color: rgb(233 220 220);
}

.followup_count-btn span.badge {
    margin-left: 12px;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 12px;
}

.followup_count-btn.todo-btn {
    background: #fac85826;
    color: #fac858;
    border: 1px solid #fac858;
}

.followup_count-btn.todo-btn span.badge {
    background: #fac858;
    color: #fff;
}

.followup_count-btn.today-btn {
    background: #91cc7526;
    color: #91cc75;
    border: 1px solid #91cc75;
}

.followup_count-btn.today-btn span.badge {
    background: #91cc75;
    color: #fff;
}

.followup_count-btn.pending-btn {
    background: #ee666626;
    color: #ee6666;
    border: 1px solid #ee6666;
}

.followup_count-btn.pending-btn span.badge {
    background: #ee6666;
    color: #fff;
}

.followup_count-btn.done-btn {
    background: #a875cc26;
    color: #a875cc;
    border: 1px solid #a875cc;
}

.followup_count-btn.done-btn span.badge {
    background: #a875cc;
    color: #fff;
}

.followup_count-btn.all-btn {
    background: #3c6df426;
    color: #3c6df4;
    border: 1px solid #3c6df4;
}

.followup_count-btn.all-btn span.badge {
    background: #3c6df4;
    color: #fff;
}

.group-container {
    border: 1px solid #0a19ec;
    border-radius: 8px;
    padding: 12px;
    background: #f8f9fa;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.group-container h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.enq_detail_offcanvas_icon {
    color: black !important;
}

.enq_detail_offcanvas_header {
    background-color: var(--primary-light-color);
}

@media (max-width: 768px) {
    .followup_count-btns {
        gap: 6px;
    }

    .group-container {
        padding: 6px;
    }

    .followup_count-btn {
        padding: 6px 10px;
        font-size: 13px;
    }

    .group-container h6 {
        font-size: 14px;
    }
}

.group-container {
    position: relative;
    padding-top: 20px;
    min-height: 80px;
}

.followups-group-section {
    padding-left: 20px;
    border-left: 1px solid var(--primary-color);
    height: 80px;
}

.group-container h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: center;
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    background: #fff;
    width: fit-content;
    margin: auto;
    padding: 0px 10px;
}

.followup_count-btn {
    position: relative;
    white-space: nowrap;
}

.followup_count-btn span.badge {
    position: absolute;
    right: 0px;
    top: -6px;
}

.filter_heading {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 22px;
    border-radius: 8px;
    padding: 8px 12px;
}

.lead-box-sections {
    border: 1px solid #0077d4;
    padding: 12px;
    border-radius: 10px;
}

.dashboard .lead-box-sections .card-icon {
    border-radius: 6px;
}

.dashboard .lead-box-sections-content .card-icon {
    width: 34px;
    height: 34px;
    font-size: 18px;
    border-radius: 6px;
}

.dashboard .lead-box-sections-content span {
    font-weight: 600;
    font-size: 12px;
}

.dashboard .lead-box-sections .info-card h6 {
    line-height: 10px;
}

.divider-section {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0px;
    width: 1px;
    height: 100%;
    /* background: #0077d4; */
    margin: auto;
    border-left: 1px solid;
}

/* 30.07.25 */
.lead_stage_dashboard_btn {
    padding: 3px;
    font-size: 18px;
    cursor: pointer;
    border: 2px solid gray;
    width: 100%;
    text-align: center;
    border-radius: 7px;
}

.lead_stage_dashboard_btn:hover {
    background: var(--primary-light-color);
    color: white;
}

.dashboard_today-btn {
    background-color: rgb(187, 244, 181);
    border-radius: 7px !important;
    padding: 5px;
}

.dashboard_todo-btn {
    background-color: rgb(244, 246, 144);
    border-radius: 7px !important;
    padding: 5px;
}

.dashboard_pending-btn {
    background-color: rgb(248, 136, 99);
    border-radius: 7px !important;
    padding: 5px;
}

.graph_badges_dashboard {
    text-align: center;
    width: auto;
}

/* 15-09-25 */

#treeView .module-name,
#treeView .form-name,
#treeView li label,
#treeView li span {
    cursor: pointer;
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
}

#treeView li {
    padding: 2px 6px;
    border-radius: 4px;
    cursor: pointer;
}

#treeView > li:hover {
    background-color: #f5f5f5;
    color: #000;
}

#treeView li li:hover {
    background-color: #e9ecef;
    color: #000;
}

#treeView li label:hover,
#treeView li span:hover {
    background-color: #f0f0f0;
}

/* 19-9-25 */
#purchaseDetailsOffcanvas {
    width: 100% !important;
    height: fit-content !important;
    overflow: auto;
}
#purchaseDetailsTable {
    width: 100%;
    table-layout: auto;
}

/* 17 -10 -25 */

.tree-container {
    max-height: 500px;
    overflow-y: auto;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    background: #f8f9fa;
    margin: 20px 0;
}

.tree-root {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tree-root > li {
    margin-bottom: 15px;
}

.module-header {
    display: flex;
    align-items: center;
}

.module-name {
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    user-select: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    width: 100%;
    margin-left: 8px; /* Space for checkbox */
}

.module-name:hover {
    background: rgba(13, 110, 253, 0.1);
}

.module-toggle {
    display: inline-block;
    width: 20px;
    text-align: center;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.module-toggle.expanded {
    transform: rotate(90deg);
}

.form-name {
    color: #495057;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    user-select: none;
    padding: 6px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-left: 26px; /* Indent for form level */
}

.form-name:hover {
    background: rgba(0, 0, 0, 0.05);
}

.action-name {
    color: #6c757d;
    font-size: 0.9em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    margin-left: 44px; /* Further indent for actions */
    user-select: none;
}

.plan-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    vertical-align: middle;
}

.tree-root ul {
    list-style: none;
    padding-left: 25px;
    margin: 8px 0 0 0;
    border-left: 2px solid #dee2e6;
}

.tree-root li {
    margin: 8px 0;
    padding: 4px 0;
}

.tree-root input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin-right: 8px;
    accent-color: #0d6efd;
    flex-shrink: 0;
}

.tree-root input[type="checkbox"]:indeterminate {
    accent-color: #ffc107;
}

.tree-root label {
    display: none;
}

.unassigned-section {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #dee2e6;
}

.unassigned-module {
    color: #dc3545 !important;
}

.d-none {
    display: none;
}

.no-forms-message {
    padding: 20px;
    text-align: center;
    color: #6c757d;
    background: #e9ecef;
    border-radius: 8px;
    margin: 20px 0;
}

.drive-item {
    position: relative;
    border-radius: 12px;
    transition: all 0.2s ease-in-out;
}

.drive-item:hover {
    background: #f8f9fa;
}

.file-thumb {
    height: 100px;
    object-fit: contain;
    border-radius: 6px;
}

.action-menu {
    position: absolute;
    top: 5px;
    right: 5px;
}

.dropdown-menu {
    z-index: 2000;
}

.dropdown-item {
    cursor: pointer;
}

.consolidated_data_table {
    height: 50vh;
    overflow: auto;
}

/* 30-11-25 */
.chatbot-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--primary-dark-color) 100%
    );
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 998;
    animation: pulse 2s infinite;
}

.chatbot-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.chatbot-floating-btn img {
    width: 50px;
    height: 50px;
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.6);
    }
}

/* Overlay */
.chatbot-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

.chatbot-overlay.active {
    display: block;
}

.chatbot-panel {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transition: right 0.3s ease;
    border-radius: 12px 0 0 12px;
}

.chatbot-panel.active {
    right: 0;
}

.chatbot-header {
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--primary-dark-color) 100%
    );
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px 0 0 0;
}

.chatbot-header-title {
    font-size: 18px;
    font-weight: bold;
    flex-grow: 1;
}

.chatbot-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.chatbot-close-btn:hover {
    transform: scale(1.2);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message {
    display: flex;
    align-items: flex-start;
    animation: slideIn 0.3s ease;
}

.message-content {
    display: inline-block;
    padding: 12px 15px;
    border-radius: 10px;
    word-break: break-word;
    white-space: pre-wrap;
    font-size: 14px;
    line-height: 1.4;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.user-message {
    justify-content: flex-end;
}

.message.bot-message {
    justify-content: flex-start;
}

.user-message .message-content {
    background: var(--primary-color);
    color: white;
    border-radius: 18px 18px 4px 18px;
}

.bot-message .message-content {
    background: #e0e0e0;
    color: #333;
    border-radius: 18px 18px 18px 4px;
}

.loading {
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 8px;
}

.loading span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    animation: bounce 1.4s infinite;
}

.loading span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%,
    80%,
    100% {
        opacity: 0.3;
    }
    40% {
        opacity: 1;
    }
}

.chatbot-input-area {
    display: flex;
    padding: 15px;
    background: white;
    border-top: 1px solid #ddd;
    gap: 10px;
}

.chatbot-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
    font-family: inherit;
}

.chatbot-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(102, 126, 234, 0.3);
}

.chatbot-send-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.3s;
}

.chatbot-send-btn:hover {
    background: var(--primary-dark-color);
}

.chatbot-send-btn:active {
    transform: scale(0.95);
}

.chatbot-usage {
    padding: 10px 15px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #666;
    text-align: center;
}

/* Task Template Page */
body.task-template-page {
    background: #f8f9fa;
    padding: 20px;
}

.task-template-form-container {
    max-width: 1400px;
    margin: 0 auto;
}

.task-template-modal-dialog-custom {
    max-width: 95% !important;
}

.task-template-two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 600px;
}

.task-template-left-panel {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.task-template-right-panel {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.task-template-main-task-badge {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.task-template-main-task-title {
    font-weight: 600;
    color: #1976d2;
    margin: 0;
}

.task-template-main-icons {
    display: flex;
    gap: 8px;
}

.task-template-main-icon-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.2s;
}

.task-template-main-icon-btn:hover {
    background: rgba(33, 150, 243, 0.1);
}

.task-template-toggle-section {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    display: none;
    position: relative;
}

.task-template-toggle-section h6 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}

.task-template-close-section {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #666;
    padding: 0;
    line-height: 1;
    z-index: 10;
}

.task-template-close-section:hover {
    color: #d32f2f;
}

.task-template-item-inputs {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.task-template-item-input {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.task-template-type-radios {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 5px;
    padding: 5px;
    background: #f8f9fa;
    border-radius: 4px;
}

.task-template-type-radios label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 3px;
    background: white;
    border: 1px solid #ddd;
}

.task-template-type-radios input[type="radio"] {
    margin: 0;
}

.task-template-subtask-inputs {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 10px;
    margin-bottom: 15px;
}

.task-template-subtask-input {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.task-template-subtask-row {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.task-template-subtask-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.task-template-subtask-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.task-template-subtask-title {
    font-weight: 500;
    margin: 0;
}

.task-template-subtask-priority {
    background: #fff3cd;
    color: #856404;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
}

.task-template-subtask-desc {
    font-size: 13px;
    color: #666;
    margin: 2px 0 0 0;
}

.task-template-subtask-icons {
    display: flex;
    gap: 5px;
}

.task-template-subtask-icon-btn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.2s;
}

.task-template-subtask-icon-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

.task-template-subtask-items-section {
    margin-top: 10px;
    background: #e9ecef;
    padding: 10px;
    border-radius: 4px;
    display: none;
    position: relative;
}

.task-template-subtask-items-section h6 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}

.task-template-subtask-items-section .task-template-item-inputs {
    grid-template-columns: 1fr;
    gap: 5px;
}

.task-template-subtask-items-section .task-template-item-input {
    width: 100%;
}

.task-template-subtask-items-section .task-template-close-section {
    top: 5px;
    right: 5px;
    font-size: 16px;
}

.task-template-item-badge {
    border-radius: 4px;
    padding: 4px 8px;
    margin: 2px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    cursor: pointer;
}

.task-template-checklist-badge {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    color: #155724;
}

.task-template-deliverable-badge {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    color: #1976d2;
}

.task-template-item-close {
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
    color: #666;
    padding: 0;
    margin-left: 4px;
    flex-shrink: 0;
}

.task-template-item-close:hover {
    color: #d32f2f;
}

.task-template-nav-tabs {
    border-bottom: 2px solid #dee2e6;
    margin-bottom: 15px;
}

.task-template-nav-tabs .nav-link {
    border: none;
    color: #666;
    font-weight: 500;
    padding: 10px 15px;
    border-bottom: 3px solid transparent;
}

.task-template-nav-tabs .nav-link.active {
    background: none;
    color: #007bff;
    border-bottom-color: #007bff;
}

.task-template-tab-content-wrapper {
    flex: 1;
    overflow-y: auto;
}

.task-template-form-section {
    margin-bottom: 20px;
}

.task-template-form-section label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.task-template-checkbox-group {
    display: flex;
    gap: 20px;
    margin: 15px 0;
}

.task-template-form-check {
    display: flex;
    align-items: center;
}

.task-template-form-check-input {
    margin-right: 8px;
    cursor: pointer;
}

.task-template-item-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.task-template-item-card {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.task-template-item-content {
    flex: 1;
}

.task-template-item-title {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.task-template-item-meta {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.task-template-item-actions {
    display: flex;
    gap: 5px;
}

.task-template-add-form {
    background: #f0f7ff;
    border: 1px solid #b3d9ff;
    border-radius: 4px;
    padding: 12px;
    margin-bottom: 15px;
}

.task-template-add-form input,
.task-template-add-form select,
.task-template-add-form textarea {
    margin-bottom: 8px;
}

.task-template-add-form input:last-child,
.task-template-add-form select:last-child,
.task-template-add-form textarea:last-child,
.task-template-add-form button {
    margin-bottom: 0;
}

.task-template-recurrence-group {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 4px;
    margin-top: 8px;
}

.task-template-modal-footer-custom {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
}

@media (max-width: 1200px) {
    .task-template-two-column-layout {
        grid-template-columns: 1fr;
        height: auto;
    }
}

.task-template-priority-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
}

.task-template-priority-low {
    background: #d4edda;
    color: #155724;
}

.task-template-priority-medium {
    background: #fff3cd;
    color: #856404;
}

.task-template-priority-high {
    background: #f8d7da;
    color: #721c24;
}

.task-template-priority-urgent {
    background: #f5c6cb;
    color: #721c24;
}

.task-template-priority-critical {
    background: #d32f2f;
    color: white;
}

.task-template-empty-state {
    text-align: center;
    color: #999;
    padding: 30px 20px;
}

.task-template-btn-add {
    background: #007bff;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
}

.task-template-btn-add:hover {
    background: #0056b3;
}

.task-template-btn-delete {
    color: white;
    border: none;
    padding: 3px 8px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
}

.task-template-btn-delete:hover {
    background: #c82333;
    color: white;
}

.task-template-table-container {
    position: relative;
    max-height: 200px;
    overflow: auto;
}

.task-template-table-hover thead {
    position: sticky;
    top: 0;
}

.task-template-table-hover th:last-child {
    padding-right: 20px;
}

.task-template-main-items-heading {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    display: inline-block;
    margin-right: 5px;
}

.task-template-item-badge-d-block {
    display: block !important;
    margin-bottom: 5px;
}

.task-template-badges-container,
#task-template-mainTaskItems,
#task-template-mainChecklistBadges,
#task-template-mainDeliverableBadges,
.task-template-subtask-badges-container,
.task-template-subtask-checklist-badges,
.task-template-subtask-deliverable-badges {
    display: flex !important;
    flex-wrap: wrap;
    gap: 5px;
    align-items: flex-start;
}

.task-template-item-badge {
    display: inline-flex !important;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.task-template-subtask-content .mt-1.task-template-badges-container {
    margin-top: 0.25rem;
    padding: 5px 0;
}

.btn-close.task-template-btn-close {
    opacity: 1 !important;
    filter: invert(0.5) !important;
    z-index: 1055;
    position: relative;
}

.task-template-modal-header {
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 1rem;
    position: relative;
}

.task-template-modal-header .task-template-btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.task-template-subtask-tabs .nav-link {
    color: #666;
    border: none;
    padding: 10px 15px;
}

.task-template-subtask-tabs .nav-link.active {
    color: #007bff;
    border-bottom: 2px solid #007bff;
}

.task-template-subtask-tab-content .table th {
    background-color: #f8f9fa;
    font-weight: 600;
    border-top: none;
}

.task-template-subtask-tab-content .table td {
    vertical-align: middle;
}
.task-template-card_view {
    box-shadow:
        rgba(136, 165, 191, 0.48) 6px 2px 16px 0px,
        rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
    height: 300px;
    overflow-y: auto;
}

/* Department Cards */
.task-template-dept-card {
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    cursor: pointer;
    border-radius: 15px !important;
    overflow: hidden;
}

.task-template-dept-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.15) !important;
}

.task-template-dept-card .bg-gradient-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    opacity: 0.05;
}

.task-template-dept-card .ri-building-2-line {
    color: #007bff;
    text-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
}

.task-template-dept-card .btn-outline-primary {
    border-width: 2px;
    transition: all 0.2s ease;
}

.task-template-dept-card .btn-outline-primary:hover {
    background: #007bff;
    border-color: #007bff;
    transform: scale(1.1);
}

/* Mini Template Cards (in expand) */
.task-template-template-mini-card {
    border-left: 4px solid #007bff;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.task-template-template-mini-card:hover {
    background: #f8f9ff;
}

/* View Toggle Buttons */
.follow-up-list-view button {
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.follow-up-list-view button.selected-border {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.follow-up-list-view button:hover:not(.selected-border) {
    background: #e9ecef;
    transform: scale(1.05);
}

/* Slim Filter Cards */
.task-template-filter-card {
    border: 2px solid #dee2e6;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    cursor: pointer;
}

.task-template-filter-card:hover {
    border-color: #007bff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.task-template-filter-card.selected-filter {
    border-color: #007bff !important;
    background: rgba(0, 123, 255, 0.05);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.task-template-filter-card .badge {
    font-size: 0.75rem;
}

.task-template-filter-card .add-dept-template {
    transition: all 0.2s ease;
}

.task-template-filter-card .add-dept-template:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Attractive Template Cards */
.task-template-card_view {
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    border-radius: 12px !important;
}

.task-template-card_view:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1) !important;
}

.task-template-card_view .card-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-bottom: 1px solid #dee2e6;
}

.task-template-card_view .btn-group .btn {
    border-radius: 6px !important;
    min-width: 32px;
}

.task-template-card_view .row.g-2 > div {
    border-right: 1px solid #eee;
}

.task-template-card_view .row.g-2 > div:last-child {
    border-right: none;
}

.task-template-card_view .btn_edit-mini,
.task-template-card_view .btn_delete-mini {
    border-radius: 6px;
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .chatbot-panel {
        width: 100%;
        right: -100%;
    }

    .chatbot-floating-btn {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }

    .chatbot-floating-btn img {
        width: 40px;
        height: 40px;
    }
}

/* Task Page Specific Styles - Prefix: task- */
.task-page .task-category-filter-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.task-page .task-category-filter-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.task-page .task-category-filter-card.selected {
    background-color: #e3f2fd;
    border-color: #2196f3;
    box-shadow:
        rgb(204, 219, 232) 3px 3px 6px 0px inset,
        rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}

.task-page .task-course-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.task-page .task-course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.task-page .task-task-tag {
    background: #007bff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.task-page .task-task-tag:hover {
    background: #0056b3;
    color: white;
    transform: translateX(2px);
}

.task-page #task-course-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.task-page .task-course-table-view {
    display: none;
}

.task-page .task-table-responsive {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.task-page .task-table {
    margin-bottom: 0;
}

.task-page .task-table thead {
    background-color: #f8f9fa;
    font-weight: 600;
}

.task-page .task-table tbody tr:hover {
    background-color: #f5f5f5;
}

.task-page .task-pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem;
}

.task-page .task-pagination-info {
    color: #666;
    font-size: 0.95rem;
}

.task-page .task-no-results {
    text-align: center;
    padding: 3rem;
    color: #999;
}

.task-page .task-no-results-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.task-page .task-card-body {
    display: flex;
    flex-direction: column;
}

.task-page .task-card-title {
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    min-height: 2.8rem;
}

.task-page .task-view-toggle-btn {
    transition: all 0.2s;
}

.task-page .task-view-toggle-btn.active {
    background-color: #666 !important;
    color: white !important;
}

.task-page .task-search-container {
    position: relative;
}

.task-page .task-search-container input {
    padding-left: 2.5rem;
}

.task-page .task-search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.task-page .task-card-meta {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
}

.task-page .task-card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.25rem 0;
}

.task-page .task-card-meta-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
}

.task-page .task-filter-section-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.task-page .task-task-filter-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.task-page .task-task-filter-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.task-page .task-task-filter-card.selected {
    background-color: #fff3cd;
    border-color: #ffc107;
}

.task-page .task-header-title {
    color: var(--primary-color);
}

/* Page-specific styles for Task Details table */
.task-table {
    --task-bg: #f8f9fa;
    --task-border: #e9ecef;
    font-size: 0.875rem; /* Slightly smaller base font for compactness */
}

.task-table .table {
    margin-bottom: 0;
    border-radius: 0.375rem;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
}

.task-table .table thead th {
    background-color: #e9ecef;
    border-bottom: 2px solid var(--task-border);
    font-weight: 600;
    color: #495057;
    padding: 0.75rem 0.5rem;
    white-space: nowrap;
}

.task-table .table tbody td {
    padding: 0.5rem;
    vertical-align: middle;
    border-color: var(--task-border);
}

.task-table .table-hover tbody tr:hover {
    background-color: rgba(0, 123, 255, 0.05);
}

/* Compact inline inputs */
.task-table .inputfield {
    height: 1.8rem !important;
    padding: 0.25rem 0.375rem !important;
    font-size: 0.8rem !important;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.task-table .inputfield:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Badge styling for tags/priority (chip-like, inspired by samples) */
.task-table .badge {
    font-size: 0.7rem;
    padding: 0.3em 0.6em;
    border-radius: 0.75rem;
    margin: 0.1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    min-width: 2rem;
    justify-content: center;
}

/* Priority badges with colors (matching sample: urgent=red, high=orange, medium=yellow, low=green) */
.task-table .priority-urgent {
    background-color: #dc3545 !important;
    color: white;
}
.task-table .priority-high {
    background-color: #fd7e14 !important;
    color: white;
}
.task-table .priority-medium {
    background-color: #ffc107 !important;
    color: #212529;
}
.task-table .priority-low {
    background-color: #198754 !important;
    color: white;
}

/* Tag badges (multi-color like samples: cycle through colors for visual appeal) */
.task-table .tag-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}
.task-table .tag-badge:nth-child(2n) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.task-table .tag-badge:nth-child(3n) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.task-table .tag-badge:nth-child(4n) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* Status badges (colored like samples: open=green, on hold=yellow, review=blue, pending=gray, complete=green) */
.task-table .status-open {
    background-color: #198754 !important;
    color: white;
}
.task-table .status-on-hold {
    background-color: #ffc107 !important;
    color: #212529;
}
.task-table .status-review {
    background-color: #0d6efd !important;
    color: white;
}
.task-table .status-pending {
    background-color: #6c757d !important;
    color: white;
}
.task-table .status-complete {
    background-color: #198754 !important;
    color: white;
}

/* Completion progress (compact bar) */
.task-table .progress {
    height: 1.2rem;
    border-radius: 0.375rem;
    background-color: #e9ecef;
    margin: 0;
}

.task-table .progress-bar {
    border-radius: 0.375rem;
    transition: width 0.3s ease;
}

/* Completion range slider (smaller, inline) */
.task-table input[type="range"] {
    height: 1rem;
    margin: 0.25rem 0;
}

.task-table .completion-text {
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 3rem;
    text-align: center;
}

/* Select2 dropdowns (compact for table) */
.task-table .select2-container {
    z-index: 1050; /* Ensure dropdowns appear above table */
}

.task-table .select2-container--default .select2-selection--multiple {
    min-height: 1.8rem;
    border: 1px solid #ced4da;
}

.task-table
    .select2-container--default
    .select2-selection--multiple
    .select2-selection__choice {
    background-color: #0d6efd;
    border: none;
    color: white;
    padding: 0.2em 0.4em;
    margin: 0.1rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
}

/* Footer add inputs (styled like samples) */
.task-table tfoot input {
    border: 2px dashed #6c757d;
    background-color: #fff;
}

.task-table tfoot input:focus {
    border-style: solid;
    border-color: #0d6efd;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .task-table .table-responsive {
        font-size: 0.75rem;
    }
    .task-table .inputfield {
        font-size: 0.75rem !important;
    }
}

/* View Toggle Buttons */
.atr-view-btn {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: 2px solid #ddd;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: all 0.3s ease;
}

.atr-view-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.atr-view-btn.atr-active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
} /* ============================================
   ATTENDANCE REPORT STYLES
   Prefix: .atr-
   Use existing colors from :root variables
   ============================================ */

/* Filter Card */
.atr-filter-input {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.atr-filter-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(1, 41, 112, 0.1);
}

/* Summary Cards */
.atr-summary-cards {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.atr-count-card {
    padding: 15px 20px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.atr-count-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.atr-count-card.atr-active {
    border-color: var(--primary-color);
    background: #f5f8fe;
}

.atr-count-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.atr-count-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.atr-count-card-total .atr-count-value {
    color: var(--primary-color);
}

.atr-count-card-present .atr-count-value {
    color: #27ae60;
}

.atr-count-card-absent .atr-count-value {
    color: #ff0101;
}

.atr-count-card-late .atr-count-value {
    color: #17a2b8;
}

/* View Toggle */
.atr-view-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: flex-end;
}

.atr-view-btn {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: 2px solid #ddd;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: all 0.3s ease;
}

.atr-view-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.atr-view-btn.atr-active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

/* Button Styles */
.atr-btn-view-detail {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.atr-btn-view-detail:hover {
    background: var(--primary-dark-color);
}

/* Table View */
.atr-table-wrapper {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.atr-table {
    width: 100%;
    margin-bottom: 0;
    border-collapse: collapse;
}

.atr-table thead th {
    background: #f5f8fe;
    color: var(--primary-color);
    font-weight: 600;
    border: none;
    padding: 15px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.atr-table tbody td {
    padding: 15px;
    border-color: #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
    font-size: 14px;
}

.atr-table tbody tr:hover {
    background: #f5f8fe;
}

.atr-table-action {
    text-align: center;
}

/* Card View Grid */
.atr-card-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.atr-staff-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.atr-staff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.atr-staff-card.atr-present {
    border-left-color: #27ae60;
}

.atr-staff-card.atr-absent {
    border-left-color: #ff0101;
}

.atr-staff-card.atr-holiday {
    border-left-color: #ff9800;
}

.atr-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f5f8fe;
    border-bottom: 1px solid #eee;
}

.atr-card-date {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.atr-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.atr-badge-present {
    background: #d4edda;
    color: #27ae60;
}

.atr-badge-absent {
    background: #f8d7da;
    color: #ff0101;
}

.atr-badge-holiday {
    background: #ffe0b2;
    color: #ff9800;
}

.atr-card-body {
    padding: 15px;
}

.atr-staff-info {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.atr-staff-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    background: #e0e0e0;
}

.atr-staff-name {
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    font-size: 15px;
}

.atr-staff-dept {
    font-size: 12px;
    color: #999;
    margin: 2px 0 0 0;
}

.atr-punch-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.atr-punch-item {
    background: #f5f8fe;
    padding: 10px;
    border-radius: 6px;
}

.atr-punch-label {
    font-size: 11px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.atr-punch-time {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.atr-hours-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.atr-hours-item {
    text-align: center;
}

.atr-hours-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}

.atr-hours-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.atr-card-footer {
    display: flex;
    gap: 10px;
    padding: 12px 15px;
    border-top: 1px solid #eee;
    background: #fafafa;
}
.atr-modal-content {
    border-top: 3px solid var(--primary-color);
}

.atr-modal-header {
    background: #f5f8fe;
    border-bottom: 2px solid var(--primary-color);
}

.atr-modal-title {
    color: var(--primary-color);
    font-weight: 700;
}

.atr-punch-entry {
    padding: 15px;
    background: #f5f8fe;
    border-radius: 6px;
    margin-bottom: 15px;
}

.atr-punch-entry h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 0;
}

.atr-punch-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 10px;
}

.atr-punch-row > div {
    font-size: 14px;
}

.atr-punch-row strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.atr-punch-time {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Loading State */
.atr-loading {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.atr-loading.show {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.atr-no-data {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    display: none;
}

.atr-no-data i {
    font-size: 48px;
    color: #ccc;
    display: block;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .atr-card-view {
        grid-template-columns: 1fr;
    }

    .atr-punch-section {
        grid-template-columns: 1fr;
    }

    .atr-hours-section {
        grid-template-columns: 1fr;
    }

    .atr-punch-row {
        grid-template-columns: 1fr;
    }

    .atr-table {
        font-size: 12px;
    }

    .atr-table thead th,
    .atr-table tbody td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .atr-card-view {
        gap: 15px;
    }

    .atr-count-card {
        min-width: auto;
        flex: 1;
    }

    .atr-staff-card {
        border-left: 3px solid;
    }

    .atr-badge {
        font-size: 10px;
        padding: 2px 8px;
    }

    .atr-punch-time {
        font-size: 14px;
    }

    .atr-hours-value {
        font-size: 14px;
    }
}

/* Utility Classes */
.atr-attendance-filter-form {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    color: var(--black-color);
    font-size: 13px;
    margin-bottom: 8px;
}

.progress-ring {
    transform: rotate(-90deg);
}
.progress-ring__circle {
    transition: stroke-dashoffset 0.35s;
    transform-origin: 50% 50%;
}
.progress-ring__circle-bg {
    stroke-dasharray: 238.76;
}

/* ──────────────────────────────────────────────
   Holiday Management Page
   ────────────────────────────────────────────── */

.holiday-container {
    padding: 1.5rem 1rem;
    max-width: 1600px;
    margin: 0 auto;
}

.holiday-tabs {
    display: flex;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid #dee2e6;
}

.holiday-tabs .tab-btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: #495057;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.holiday-tabs .tab-btn.active {
    color: #0d6efd;
    border-bottom-color: #0d6efd;
    font-weight: 600;
}

.holiday-container .tab-content {
    display: none;
}

.holiday-container .tab-content.active {
    display: block;
}

.controls-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
    background: #f8f9fa;
    padding: 1.25rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.control-group {
    flex: 1;
    min-width: 180px;
}

.control-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
}

.control-group .form-control,
.control-group select,
.control-group input {
    height: 42px;
}

.date-range .date-fields {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.date-fields input {
    flex: 1;
}

.calendar-full-area.holiday-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--primary-color);
    color: white;
    flex-wrap: wrap;
    gap: 1rem;
}

.left-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.month-navigation {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.nav-btn {
    background: white;
    color: #198754;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.save-btn {
    padding: 0.6rem 1.8rem;
    font-size: 1rem;
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.calendar-table th,
.calendar-table td {
    padding: 1.2rem 0.8rem;
    text-align: center;
    border: 1px solid #dee2e6;
    font-size: 1.05rem;
    vertical-align: middle;
    position: relative;
}

.calendar-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.calendar-table td {
    cursor: pointer;
    min-height: 110px;
}

.calendar-table td:hover {
    background: #f1f3f5;
}

.off-day {
    background-color: #fff5f5 !important;
}

.holiday {
    background-color: #fff3cd !important;
}

.selected-day {
    background-color: #d4edda !important;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .controls-row {
        flex-direction: column;
        align-items: stretch;
    }
    .calendar-header {
        flex-direction: column;
        gap: 1rem;
    }
}