@import url('https://fonts.googleapis.com/css2?family=Roboto:ital@0;1&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    list-style: none;
    font-family: "Roboto", sans-serif;
}

:root {
    --primary: #0086d6;
    --white: #fff;
    --black: #000;
    --black100: #1C1C1C;
    --gray100: #717171;
}
/* login page css start */
.login-outer {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .login-outer video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.form-section-outer {
    position: absolute;
    background-color: #fff;
    width: 600px;
    padding: 40px 30px;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
}

.login-logo {
    text-align: center;
}

    .login-logo img {
        width: 100%;
        max-width: 200px;
    }

.login-head {
    margin: 40px 0px;
}

    .login-head h2 {
        font-size: 32px;
        font-weight: 600;
        color: var(--black100);
    }

    .login-head h6 {
        font-size: 18px;
        font-weight: 500;
        color: var(--gray100);
    }

.login-input {
    position: relative;
}

    .login-input i {
        position: absolute;
        top: 45px;
        left: 14px;
        color: var(--primary);
        font-size: 20px;
        fill: var(--primary);
    }

    .login-input svg {
        position: absolute;
        top: 45px;
        left: 14px;
        color: var(--primary);
        font-size: 20px;
        fill: var(--primary);
    }

    .login-input label {
        display: block;
        font-size: 16px;
        font-weight: 600;
        color: var(--black100);
    }

    .login-input input {
        width: 100%;
        padding: 15px 42px;
        border: 1px solid #c8c8c8;
        border-radius: 8px;
        margin-top: 5px;
    }

        .login-input input:focus-visible {
            outline: none;
        }

.button-section a {
    margin: 10px 0px;
    text-align: end;
    color: var(--gray100) !important;
    font-size: 18px;
    width: 100%;
    display: block;
    cursor: pointer;
}

.button-section span {
    margin: 20px 0px;
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--gray100);
}

.button-section button {
    padding: 12px 20px;
    border: none;
    color: var(--white);
    font-weight: 500;
    width: 100%;
    font-size: 20px;
    border-radius: 10px;
    background: var(--button-lineaer, linear-gradient(90deg, #0086d6 0%, #1590d9 100%));
    box-shadow: 0px 0px 18px 0px rgb(149 149 149 / 25%);
    margin-top: 20px;
}

.button-section p a {
    display: unset;
    color: var(--primary) !important;
    text-decoration: none;
}

.button-section p {
    text-align: center;
    color: var(--black);
}
/* login page css end */

/* dashboard page start */
.main {
    overflow: hidden;
    background-color: #F7F7F7;
    min-height: 100vh;
}

.left-sidebar {
    width: 266px;
    height: 100vh;
    background: var(--white);
    box-shadow: 0px 0px 20px 5px rgba(5, 23, 34, 0.05);
    transition: all 0.5s;
    position: fixed;
    z-index: 99;
}

.sidebar-logo a img {
    width: 100%;
    max-width: 170px;
}

.left-sidebar ul {
    padding-left: 0px;
}

    .left-sidebar ul li {
        padding: 13px;
        font-size: 14px;
        position: relative;
        padding: 14px 15px;
    }

        .left-sidebar ul li a {
            text-decoration: none;
            color: #6C7278 !important;
            font-weight: 400;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.5s;
        }

            .left-sidebar ul li a i {
                width: 20px;
            }

            .left-sidebar ul li a svg {
                position: unset;
            }

                .left-sidebar ul li a svg path {
                    stroke: #6C7278;
                }

.list-unstyle .menuactive {
    background-color: rgb(16 141 216 / 28%);
}

.left-sidebar .list-unstyle .menuactive a {
    color: var(--primary) !important;
}

.list-unstyle .menuactive a svg {
    color: unset;
    fill: var(--primary);
}

    .list-unstyle .menuactive a svg path {
        color: var(--primary);
        stroke: var(--primary);
    }

.menuactive::before {
    position: absolute;
    width: 7px;
    height: 100%;
    content: '';
    background-color: var(--primary);
    top: 0px;
    right: 0px;
}

.dashheader {
    box-shadow: 0px 1px 2px 2px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    top: 0px;
    width: calc(100% - 266px);
    background: var(--button-lineaer, linear-gradient(90deg, #0086d6 0%, #1590d9 100%));
    z-index: 9;
    transition: all 0.5s;
}

.main-outer .content-section .dashheader {
    width: calc(100% - 120px);
    transition: all 0.5s;
}

.hamburger-icon i {
    color: var(--white);
    font-size: 22px;
}

.dashheader .dropdown {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cstm-btn {
    border: none;
    background: transparent;
    padding: 5px 10px;
    color: #fff;
    display: flex;
    flex-direction: column;
}

    .cstm-btn span:first-child {
        font-size: 14px;
        font-weight: 500;
        color: var(--white);
    }

    .cstm-btn span:nth-child(2) {
        font-size: 12px;
        font-weight: 400;
        color: var(--white);
    }

.dropdown-toggle::after {
    position: absolute;
    right: 2px;
    top: 16px;
    font-size: 26px;
    color: var(--white);
}

.content-section {
    width: calc(100% - 266px);
    margin-left: 266px;
    transition: all 0.5s;
    position: relative;
    margin-top: 90px;
}

.left-width {
    width: 120px;
    transition: all 0.5s;
}

.main-outer .content-section {
    width: calc(100% - 120px);
    margin-left: 120px;
    transition: all 0.5s;
}

.left-width .list-unstyle li a span {
    display: none;
}

.left-width .list-unstyle li a {
    justify-content: center;
    font-size: 14px;
}

.project-manage::after {
    position: absolute;
    right: 10px;
    content: "\f078";
    top: 12px;
    font-size: 15px;
    font-family: FontAwesome;
    color: #6c7278;
}

.project-manage[aria-expanded="true"]::after {
    transform: rotate(180deg);
    transition: 0.5s;
}

.content-inner {
    padding: 0px 30px 30px 30px;
}

.dashboard-card h3 {
    color: #161B23;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 20px;
}

.claim-card {
    display: flex;
    align-items: start;
    justify-content: space-between;
    box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.05);
    padding: 20px;
    border-radius: 8px;
    background-color: var(--white);
    height: 100%;
}

.claimcard-inner h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--gray100);
}

.claimcard-inner h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 0px;
}

.claimcard1 {
    border-bottom: 3px solid #ff0000;
}

.claimcard2 {
    border-bottom: 3px solid #7EC2FF;
}

.claimcard3 {
    border-bottom: 3px solid #FFD66B;
}

.claimcard4 {
    border-bottom: 3px solid #7EC2FF;
}

.monitoring-chart {
    box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.05);
    padding: 20px;
    border-radius: 8px;
    background-color: var(--white);
    margin-top: 30px;
    height: 100%;
}

    .monitoring-chart h4 {
        font-size: 16px;
        font-weight: 600;
    }

#chart-area g.apexcharts-data-labels {
    display: none;
}

.topperformer-outer {
    box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    background-color: var(--white);
    margin-top: 30px;
    height: 100%;
    padding-bottom: 9px;
}

.topperformer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

    .topperformer-header h4 {
        font-size: 16px;
        margin: 0px;
        font-weight: 600;
    }

    .topperformer-header a {
        text-decoration: none;
    }

.topperformer-list {
    height: 440px;
    overflow: auto;
}

    .topperformer-list ul li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #e8e8e8;
        padding: 10px 20px;
    }

.performer-left img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.perform-name h5 {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
}

.perform-name h6 {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray100);
    margin: 0px;
}

.latestTable-card {
    box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    background-color: var(--white);
    margin-top: 30px;
    height: 100%;
    padding: 15px;
}

.latestTable-head h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 8px 0px 20px 0px;
}

.latest-table table thead tr th {
    background-color: rgb(0 134 214 / 74%);
    padding: 10px;
    color: var(--white);
    font-weight: 500;
    text-align: left;
}

    .latest-table table thead tr th .dt-column-header {
        flex-direction: unset !important;
    }

        .latest-table table thead tr th .dt-column-header .dt-column-title {
            text-align: left;
        }

.latest-table table tbody tr td {
    padding: 10px;
    background-color: transparent;
    border: none;
    vertical-align: middle;
}

.latest-table table tbody tr:nth-child(even) {
    background-color: #f3f3f3 !important;
}

.latest-table table tbody tr td.dt-type-numeric {
    text-align: left;
}

.active-status {
    padding: 4px 15px;
    border: none;
    border-radius: 20px;
    background-color: #26a3513b;
    color: #26a351;
    width: 100px;
}

.pending-status {
    padding: 4px 15px;
    border: none;
    border-radius: 20px;
    background-color: #c5971d3b;
    color: #c5971d;
    width: 100px;
}
.inactive-status {
    padding: 4px 15px;
    border: none;
    border-radius: 20px;
    background-color: #ff8787;
    color: #424644;
    width: 100px;
}
/* dashboard page end */

/*----------User datalist Page Start------*/
.userAddButton button {
    padding: 12px 20px;
    border: none;
    color: var(--white);
    font-weight: 500;
    
    border-radius: 10px;
    background: var(--button-lineaer, linear-gradient(90deg, #0086d6 0%, #1590d9 100%));
    box-shadow: 0px 0px 18px 0px rgb(149 149 149 / 25%);
    margin-top: 0px;
   
    
}
.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.field-icon {
    float: right;
    margin-left: -25px;
    margin-top: 26px;
    position: relative;
    z-index: 2;
}

.containers {
    display: flex;
}

/*05/06/2025*/
.user-form{
    display: flex;
    justify-content: center;
}
    .user-form .login-head button {
        padding: 10px 20px;
        border-radius: 6px;
        color: var(--white);
        background-color: #6c7278;
        border: none;
    }
    .user-form .form-section-outer {
        width: calc(100% - 200px);
        padding: 20px;
    }
.user-form .form-section-inner .login-input label{
    font-weight: 500;
}
.user-form .form-section-inner .login-input input {
    padding: 15px;
}
.user-form .form-section-inner .login-input select {
    padding: 15px;
}
.user-form .form-section-inner .button-section button {
    width: 140px;
    padding: 10px 20px;
}

body {
    font-family: 'Varela Round', sans-serif;
}
/*Modal Pop-up Start*/
.modal-content {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.modal-header {
    border-bottom: none;
    padding: 1.5rem 1.5rem 0.5rem;
    background: linear-gradient(to right, #ff6b6b, #ff8787);
    border-radius: 1rem 1rem 0 0;
    color: white;
}

.modal-title {
    font-weight: 600;
    font-size: 1.25rem;
}

.btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.2s;
}

    .btn-close:hover {
        opacity: 1;
    }

.modal-body {
    padding: 2rem 1.5rem;
    font-size: 1.1rem;
    color: #495057;
}

.modal-footer {
    border-top: none;
    padding: 1rem 1.5rem 1.5rem;
}

.btn {
    padding: 0.6rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-secondary {
    background-color: #e9ecef;
    border: none;
    color: #495057;
}

    .btn-secondary:hover {
        background-color: #dee2e6;
    }

.btn-danger {
    background: linear-gradient(to right, #ff6b6b, #ff8787);
    border: none;
}

    .btn-danger:hover {
        background: linear-gradient(to right, #fa5252, #ff6b6b);
        transform: translateY(-1px);
    }

.warning-icon {
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.modal.fade .modal-dialog {
    transform: scale(0.95);
    transition: transform 0.2s ease-out;
}

.modal.show .modal-dialog {
    transform: scale(1);
}
/*Modal Pop-up End*/

/*01-07-2025*/
li#idUsers {
    margin-top: 2px;
}
table#registered-table tbody tr td .container {
    display: flex;
    align-items: center;
    gap: 6px;
}
.dt-length label {
    margin-left: 10px;
}

/*11 July 2025-- Toggle switch button*/
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

input:checked + .slider {
    background-color: #4CAF50;
}

    input:checked + .slider:before {
        transform: translateX(26px);
    }
    /* Toastr CSS**/
#toast-container > div {
    backdrop-filter: none !important;
    filter: none !important;
    opacity: 1 !important;
    color: #000 !important;
    font-size: 14px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

    /* Optional: make sure background is solid */
    #toast-container > div.toast-success {
        background-color: #438df9 !important;
    }

    #toast-container > div.toast-error {
        background-color: #ca1919 !important;
    }

    #toast-container > div.toast-info {
        background-color: #d9edf7 !important;
    }

    #toast-container > div.toast-warning {
        background-color: #FFA500 !important;
    }
/* 11- August**/
.containers {
    display: flex;
}
select {
    width: 100%;
    padding: 15px 42px;
    border: 1px solid #c8c8c8;
    border-radius: 8px;
    margin-top: 5px;
}
/* 10- Sep**/

/*23/12/2025*/
div#confirmModal .modal-dialog .modal-content .modal-header {
    padding: 15px;
    background: var(--primary);
}

table#asset-table tbody tr td .container {
    display: flex;
    align-items: center;
    gap: 6px;
}


.role-container .login-input input[type="checkbox"] {
    padding: 0px;
    width: 16px;
}