/*-------------------------------------
    Variables color
-------------------------------------*/
:root {
    --blue: #52C4CB;
    --blue2: #0F87AE;
    --white: #ffffff;
    --black: #000000;
    --dark-black: #131920;
    --gray: #878A99;
    --greem: #00B919;
    --Not-Started: #D4D4D4;
    --gradient-blue: linear-gradient(120deg, #0F87AE 0%, #52C4CB 100%);
    --gradient-blue-hover: linear-gradient(120deg, #52C4CB 0%, #0F87AE 100%);
}

@property --myColor1 {
    syntax: '<color>';
    initial-value: #0F87AE;
    inherits: false;
}

@property --myColor2 {
    syntax: '<color>';
    initial-value: #52C4CB;
    inherits: false;
}

/*-------------  xxxx  --------------*/

/*-------------------------------------
    Basics Style
-------------------------------------*/

* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    font-weight: normal;
    margin: 0 auto;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Source Sans Pro", sans-serif;
    margin-top: 0;
    margin-bottom: 0.3em;
}

p {
    margin-top: 0;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 40px;
    font-weight: 500;
    color: var(--dark-black);
}

.h1, h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 30px;
    color: var(--black);
    font-weight: 500;
}

h3 {
    font-size: 18px;
    color: var(--black);
    font-weight: 600;
}

a {
    transition: all 0.5s;
    text-decoration: none;
    color: var(--blue2);
}

::placeholder {
    font-size: 16px;
    opacity: 1;
    color: var(--gray);
}

input[type="text"], input[type="neumber"], input[type="password"],
input[type="email"], input[type="tel"] {
    border: 1px solid #CED4DA;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    padding: 12px 20px;
}

input[type="text"]:focus-visible, input[type="neumber"]:focus-visible,
input[type="password"]:focus-visible, input[type="email"]:focus-visible, 
input[type="tel"]:focus-visible {
    outline: none;
    border-color: #0F87AE !important;
}

label {
    font-size: 15px;
    font-weight: 100;
    color: #212529;
    line-height: 30px;
}

table, tr, td, tbody {
    color: var(--gray);
    font-size: 14px;
    font-weight: 400;
}

.input {
    margin-bottom: 30px;
}

.input:last-child {
    margin-bottom: 0px;
}

.container {
    max-width: 920px;
    padding: 0 15px;
    margin: 0 auto;
}

.btn-primary, .btn-secondary, .btn-tertiary {
    padding: 12px 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    border-radius: 4px;
}

.btn-primary.md,
.btn-secondary.md,
.btn-tertiary.md {
    padding: 8px 15px;
}

.btn-primary {
    background: linear-gradient(120deg, var(--myColor1) 0%, var(--myColor2) 100%);
    transition: --myColor1 0.5s, --myColor2 0.5s;
    color: var(--white);
    border: 1px solid transparent;
}

.btn-primary:hover {
    --myColor1: #52C4CB;
    --myColor2: #0F87AE;
}

.btn-secondary {
    border: 1px solid var(--blue2);
    color: var(--blue2);
    transition: all 0.5s;
}

.btn-secondary:hover {
    color: var(--white);
    background: var(--gradient-blue);
    border: none;
}

.btn-secondary:hover svg path {
    fill: var(--white);
}

.text-center {
    text-align: center;
}

.btn-tertiary {
    border: 1px solid #6B7280;
    color: #6B7280;
    transition: all 0.5s;
}

.btn-tertiary:hover {
    border-color: var(--blue);
    background: var(--gradient-blue);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*-------------  xxxx  --------------*/

/*-------------------------------------
    Login / Forgot Password
-------------------------------------*/

.login-background {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-image: url('../images/Login/login-banner.png');
    background-position: center;
    background-repeat: no-repeat;
}

.login-form-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
    text-align: center;
    margin: 0 auto 0 auto;
}

.login-form-box,
.register-form-box {
    font-family: "Source Sans Pro", sans-serif;
}

.login-form-box .heading-box {
    margin-bottom: 20px;
}

.login-form-box .heading-box h1 {
    font-size: 2rem;
    margin-bottom: 0;
    color: #333;
}

.login-form-box.forgot-password .heading-box h1 {
    margin-bottom: 10px;
}

.login-form-box .heading-box p {
    font-size: 1rem;
    color: var(--gray);
}

.login-form-box form {
    margin-top: 40px;
    margin-bottom: 0px;
}

.login-form-box .input {
    margin-bottom: 20px;
    text-align: left;
}

.login-form-box .input:last-child {
    margin-bottom: 0px;
}

.login-form-box .input label {
    display: block;
    margin-bottom: 5px;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1rem;
    color: #333;
}

.login-form-box .input input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.login-form-box.forgot-password .input input {
    width: 95%;
}

.login-form-box .btn-primary {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-form-box .btn-primary:hover {
    background-color: #0056b3;
}

.login-form-box .forgot-password {
    text-align: right;
    margin-top: -10px;
    margin-bottom: 20px;
}

.login-form-box .forgot-password a {
    color: #007bff;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-form-box .forgot-password a:hover {
    color: #0056b3;
}

.login-form-box .back-to-login {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-form-box .back-to-login:hover {
    color: #0056b3;
}

.login-form-box .footer-logo {
    text-align: center;
    margin-top: 20px;
    padding-bottom: 10px;
}

.login-form-box.forgot-password .footer-logo {
    padding-bottom: 0;
}

.login-form-box .footer-logo img {
    max-width: 150px;
    margin-top: 20px;
}

.captcha-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.captcha-box img {
    max-width: 100px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-right: 10px;
}

.captcha-input {
    flex-grow: 1;
    display: flex;
    align-items: center;
    position: relative;
}

.captcha-input input {
    width: 95%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #66afe9;
    box-shadow: 0 0 5px rgba(102, 175, 233, 0.5);
    font-size: 1rem;
    text-align: center;
    background-color: #f1f5f9;
    color: #333;
}

.captcha-image {
    font-size: 1.5rem;
    padding: 10px;
    background-color: #e9ecef;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%;
    text-align: center;
    margin-left: 25px;
}

@media (max-width: 576px) {
    .login-form-box {
        padding: 20px;
    }

    .login-form-box .heading-box h1 {
        font-size: 1.5rem;
    }

    .login-form-box .heading-box p {
        font-size: 0.9rem;
    }

    .login-form-box .btn-primary {
        padding: 10px;
        font-size: 0.9rem;
    }
}

/*-------------  xxxx  --------------*/

/*-------------------------------------
    Register
-------------------------------------*/

.banner{
    background-color: #F3F3F9;
    background-image: url("../images/Login/login-banner.png");
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 380px;
    display: flex;
    align-items: center;
    position: relative;
}

.banner::before{
    content: "";
    position:absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 112px;
    background: url('../images/Login/banner-after.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;    
}

section.register-sec {
    margin-top: -100px;
    padding-bottom: 100px;
    position: relative;
}

.register-form-box {
    background-color: var(--white);
    max-width: 600px;
    margin: 0 auto 0 auto;
    padding: 44px 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
}

.register-form-box .heading-box {
    margin-bottom: 20px;
}

.register-form-box .heading-box h1 {
    margin-bottom: 0;
}

.register-form-box .heading-box p {
    color: var(--gray);
}

.register-form-box .button-group {
    max-width: 313px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 0 auto;
}

.register-form-box .button-group a.active,
.register-form-box .button-group a:hover {
    color: var(--dark-black)
}

.register-form-box .button-group a.active {
    text-decoration: underline;
}

.register-form-box form {
    margin-top: 40px;
    margin-bottom: 0px;
}

.register-form,
.regiser-h {
    display: none;
}

/*-------------  xxxx  --------------*/

/*-------------------------------------
    Header
-------------------------------------*/

header{
    background: var(--white);
    padding: 12px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
    z-index: 3;
}
header .search-box .desktop input {
    min-width: 415px;
    background: #F3F5F7;
    border-color: rgba(0,0,0,0.1);
    background-repeat: no-repeat;
    background-position: 97% 50%;
    background-image: url("data:image/svg+xml,%0A%3Csvg width='17' height='18' viewBox='0 0 17 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.7568 16.6509C16.889 16.783 16.955 16.9481 16.955 17.1463C16.955 17.3444 16.8835 17.5096 16.7403 17.6417C16.5972 17.7738 16.4321 17.8398 16.2449 17.8398C16.0578 17.8398 15.8871 17.7738 15.733 17.6417L10.3495 12.2252C9.18254 13.1499 7.86144 13.6123 6.38621 13.6123C4.64676 13.6123 3.15501 12.9958 1.91098 11.7628C0.66694 10.5298 0.0449219 9.0325 0.0449219 7.27104C0.0449219 5.50957 0.66694 4.01232 1.91098 2.77929C3.15501 1.54627 4.65226 0.929752 6.40272 0.929752C8.15318 0.929752 9.64492 1.54627 10.8779 2.77929C12.111 4.01232 12.7275 5.50957 12.7275 7.27104C12.7275 8.76828 12.2651 10.0894 11.3403 11.2343L16.7568 16.6509ZM1.46511 7.27104C1.46511 8.63617 1.944 9.79764 2.9018 10.7554C3.8596 11.7132 5.02107 12.1921 6.38621 12.1921C7.75134 12.1921 8.91832 11.7187 9.88712 10.772C10.8559 9.80315 11.3403 8.63617 11.3403 7.27104C11.3403 5.9059 10.8559 4.74443 9.88712 3.78663C8.91832 2.82883 7.75134 2.34994 6.38621 2.34994C6.01189 2.34994 5.63758 2.39397 5.26327 2.48205C4.88896 2.57012 4.54217 2.69122 4.2229 2.84535C3.90364 2.99948 3.60089 3.19214 3.31465 3.42333C3.02841 3.65452 2.76969 3.91324 2.5385 4.19948C2.30731 4.48572 2.11465 4.78847 1.96052 5.10773C1.80639 5.427 1.68529 5.77379 1.59722 6.1481C1.50914 6.52241 1.46511 6.89672 1.46511 7.27104Z' fill='%236B7280'/%3E%3C/svg%3E%0A");
}
header.header .row .search-box {
    display: flex;
    gap: 20px;
}
.site-info-header p{
    line-height: 1;
    font-size: 12px;
    margin: 0;
    color: #6B7280;
}
.site-info-header {
    display: flex;
    align-items: center;
    background: rgba(107, 114, 128, 0.2);
    border-radius: 8px;
    gap:10px;
    border: 1px solid rgba(0,0,0,0.3);
    padding: 2px 10px;
}
header.header .row {
    display: flex;
    justify-content: space-between;
    gap:15px;
    align-items: center;
}
header.header .user-info {  
    display: flex;
    gap: 50px;
    align-items: center;
}
header.header .user-info .notification-box > ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0px;
    padding-left: 0;
}
.notification-box svg path {
    fill: #6B7280;
}
header.header .user-info .notification-box > ul > li {
    position: relative;
}
header.header .notification-box {
    margin-top: 12px;
}
header.header .user-info .notification-box > ul > li > ul{
    background: var(--white);
    width: 400px;
    padding: 20px 10px;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    margin: .125rem 0 0;
    -webkit-box-shadow: 0 0 28px rgba(0,0,0,.1);
    box-shadow: 0 0 28px rgba(0,0,0,.1);
    color: #212529;
    text-align: left;
    list-style: none;
    background-clip: padding-box;
    border-radius: 10px;
    overflow: auto;
    max-height: 350px;
}
header.header .user-info .notification-box > ul > li > ul.show{display: block;}
header.header .user-info .notification-box > ul > li > ul::-webkit-scrollbar {
    width: 10px;
}
 
header.header .user-info .notification-box > ul > li > ul::-webkit-scrollbar-track {
    background-color: #ebebeb;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

header.header .user-info .notification-box > ul > li > ul::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #6d6d6d; 
}
ul.message-notification li{
    margin-bottom: 15px;
}
ul.message-notification li a {
    display: flex;
    gap: 15px;
    align-items: center;
}
ul.message-notification li img {
    min-width: 50px;
    border-radius: 10px;
    display: block;
    -webkit-box-shadow: 1px 2px 13px rgba(0,0,0,.2);
    box-shadow: 1px 2px 13px rgba(0,0,0,.2);
}
ul.message-notification li a{color: inherit;}
ul.message-notification li a h4{margin-bottom: 0;}
.notification-list li a,
ul.message-notification li a p{font-size: 16px; color: var(--gray);}
ul.notification-list a{color: inherit; font-size: 14px;}
.user-pro{
    position: relative;
}
.notification-box > ul > li > a > samp {
    background: #1B97B9;
    width: 26px;
    height: 26px;
    display: flex;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    position: absolute;
    font-size: 14px; 
    color: var(--white);
    top: -8px;
    right: -8px;
}
body.vodafone-color .notification-box > ul > li > a > samp{background: #EE3023;}
.erucsson-color .notification-box > ul > li > a > samp{background: #002163;}
.user-pro a.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    
}
.user-pro a.dropdown-toggle .user-name{color:#131920}
.user-pro a.dropdown-toggle img {
    border-radius: 100%;
}
.user-pro a.dropdown-toggle span.user-name{
    font-size: 16px;
    font-weight: 600;
}
.user-pro a.dropdown-toggle span.user-name samp {
    font-size: 12px; 
    font-weight: normal;
    font-family: inherit;
    display: block;
}
.user-pro::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background: rgba(0,0,0,.1);
    left: -22px;
}

.user-pro .dropdown-menu {
    min-width: 185px;
    background: #fff;
    border: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 28px rgba(0,0,0,.1);
    box-shadow: 0 0 28px rgba(0,0,0,.1);
    display: none;
}
.user-pro .dropdown-menu a.dropdown-item {
    position: relative;
    font-size: 15px;
    font-weight: 400;   
    padding: .657rem 1rem;
    letter-spacing: 0;
    padding-left: 45px;
    color:var(--black);
    display: block;
    width: 100%;
}
.user-pro .dropdown-menu a.dropdown-item:hover{color: var(--blue2); background: #f3f3f3;}
.user-pro .dropdown-menu a.dropdown-item i{
    position: absolute;
    left: 16px;
    top: 50%;
    font-size: 18px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0,-50%);
}



#results {
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    display: none;
    position: absolute;
    z-index: 1000;
    background: #fff;
}

#results .result-item {
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

#results .result-item:hover {
    background: #f0f0f0;
}

.result-item .field {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
}

.result-item .field strong {
    min-width: 130px;
    font-weight: bold;
}

.result-item .field span {
    margin-left: 0px;
}

#loader {
    display: none;
    position: absolute;
    z-index: 1001;
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}

.mapboxgl-ctrl-top-right {
    top: 50% !important;
    transform: translateY(-50%);
}

.notification-box {
    position: relative;
    display: inline-block;
}

.notification-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notification-box .notification {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-size: 16px;
    color: #34495e;
}

.notification-box .notification:hover {
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2), 0 0 25px rgba(0, 0, 0, 0.15);
    background-color: #f7faff;
}

.notification-box .notification svg {
    margin-right: 10px;
    fill: #3fb3c3;
}

.notification-box .notification-list {
    display: none;
    position: absolute;
    top: 35px;
    left: -280px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 1000;
    width: 280px;
}

.notification-box .notification-list li {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
    font-size: 16px;
    color: #333;
}

.notification-box .notification-list li:last-child {
    border-bottom: none;
}

.notification-box .notification-list li:hover {
    background: #f0f8ff;
}

.notification-box .notification-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.notification-box .notification-list a .task-number {
    color: #3fb3c3;
    font-weight: bold;
}

.notification-box .close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.notification-box .notification-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    padding: 3px 8px;
    font-size: 12px;
    font-weight: bold;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {}

/*-------------  xxxx  --------------*/

/*-------------------------------------
    DataTable
-------------------------------------*/

.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate,
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
    font-size: 13px !important;
}

.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length select {
    font-size: 13px !important;
}

table.dataTable tbody th,
table.dataTable tbody td {
    font-size: 13px !important;
}

table.dataTable {
    font-size: 13px !important;
}

.delivery-page table.dataTable {
    font-size: 13px !important;
    border-collapse: collapse;
    margin-top: 20px;
}

.delivery-page table.dataTable th,
.delivery-page table.dataTable td {
    padding: 8px;
    text-align: center;
}

table.dataTable tbody,
table.dataTable tr,
table.dataTable td {
    font-size: 13px !important;
}

.edit-btn,
.cancel-btn,
.save-btn {
    border: none;
    background: none;
    cursor: pointer;
    padding-left: 25px;
    color: inherit;
}

.edit-btn:disabled,
.cancel-btn:disabled,
.save-btn:disabled {
    color: grey;
    cursor: not-allowed;
}

.edit-btn:hover:not(:disabled),
.cancel-btn:hover:not(:disabled),
.save-btn:hover:not(:disabled) {
    color: #007bff;
}

.custom-job-status-dropdown {

    padding: 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    font-size: 13px;
    color: #333;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.custom-job-status-dropdown:focus {
    border-color: #66afe9;
    outline: 0;
    box-shadow: 0 0 8px rgba(102, 175, 233, 0.6);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.message-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 60px;
    height: 60px;
}

.loader div {
    width: 12px;
    height: 12px;
    background-color: #3498db;
    border-radius: 50%;
    animation: fade 1.5s infinite ease-in-out;
}

.loader div:nth-child(2) {
    animation-delay: -0.3s;
}

.loader div:nth-child(3) {
    animation-delay: -0.6s;
}

@keyframes fade {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.overlay {
    display: none;
    opacity: 0;
}

.overlay.show {
    display: flex;
    opacity: 1;
}

/*-------------  xxxx  --------------*/

/*-------------------------------------
    Home / Dashboard
-------------------------------------*/

.main-content {
    padding: 10px 20px 20px;
    /* max-width: 1200px; */
    width: 100%;
    margin: 0 auto;
    height: 100%;
    box-sizing: border-box;
}

/* .main-content {
    width:100%;
    padding-top: 10px;
} */

.grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
   
    
}

.grid-item {
    border-radius: 10px;
    background-color: #fff;
    box-sizing: border-box;
    /* padding: 15px; */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    flex-basis: 45%;
    min-height: 200px;
}

.grid-item.large {
    flex: 1 1 calc(66.666% - 10px);
}

.grid-item .card-header-custom {
    display: flex;
    align-items: center;
    font-size: 1.6em;
    margin-bottom: 20px;
    color: #333;
}

.grid-item .card-header-custom i {
    margin-right: 10px;
    color: #f39c12;
}

.grid-item .header-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
    margin-left: 10px;
}

.grid-item .card-body-custom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: left;
    font-size: 14px;
    color: #34495e;
}

.card-body-custom.image-only {
    padding: 20px;
}

.card-body-custom.image-only > img {
    cursor: pointer;
    width: 35%
}

.grid-item .alert-block {
    flex: 1 1 45%;
    margin: 3px;
    padding: 10px;
    border-radius: 6px;
    background-color: #ecf0f1;
    font-size: 14px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.grid-item .alert-block h5 {
    font-size: 1em;
    margin-bottom: 5px;
    font-weight: 600;
    color: #34495e;
}

.grid-item .alert-block p {
    margin: 0;
    color: #565656;
}

.grid-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

#delivery-chart,
#project-status-chart,
#queued-status-chart {
    width: 100%;
    height: 200px;
}

#project-status-chart {
    height: 150px;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.popup-overlay.show {
    display: flex;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 400px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #333;
}

.widget-item {
    font-size: 20px;
    padding: 15px 0;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.widget-item:hover {
    background-color: #f0f0f0;
    color: #333;
}

.grid-item:hover {
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.7);
    transform: scale(1.05);
}

.controls-container {
    width: 100%;
    height: 80px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    padding: 15px;
    margin-top: 10px 0;
    border-radius: 10px;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.controls-container label {
    font-weight: 400;
    color: #34495e;
    font-size: 20px;
    color: #333;
    margin: 10px 30px;
}

.controls-container select {
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.left-section h1 {
    margin: 0;
}

.right-section {
    display: flex;
    align-items: center;
}

.right-section label {
    font-weight: 400;
    color: #333;
    font-size: 20px;
    margin: 0;
}

.right-section select {
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-left: 10px;
}

.filter-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 5px 15px;
    margin-top: 0px;
    margin-bottom: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);

    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #f0f0f0;
}

.filter-dropdown {
    width: 170px !important;

}

.filter-section label {
    font-size: 16px;
    margin-top: 10px;
    white-space: nowrap;
}

.header-container h1 {
    margin-bottom: 5px;
}

/*-------------  xxxx  --------------*/

/*-------------------------------------
    Delivery
-------------------------------------*/

#main {
    width: 100%;
    height: 400px;
    margin-top: 15px;
}

.btn-tab {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    text-align: center;
    color: #333;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 5px;
    cursor: pointer;
}

.btn-tab:hover {
    background-color: #0d799d;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    border-color: #999;
    color: #fff;
}

.delivery-page .header-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.delivery-page .project-dropdown-container {
    display: flex;
    align-items: center;
}

.delivery-page .project-dropdown {
    width: 200px;
    /* Adjust as needed */
    margin-left: 10px;
}

#milestonesTable th:first-child,
#milestonesTable tbody td:first-child {
    border: 1px solid #ddd;
    text-align: center;
}

.message {
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
    color: #888;
}

#milestonesTable {
    width: auto !important;
    border: 1px solid #dee2e6;
}

#milestonesTable th {
    cursor: pointer;
}

#milestonesTable th.active {
    background-color: #0d799d;
    color: white;
    font-weight: bold;
    border-bottom: 2px solid #005f5b;
}

.status-complete {
    background-color: #1B97B9;
    color: white;
}

.status-in-progress {
    background-color: #5fcad2;
    color: white;
}

.status-to-do {
    background-color: #837d7d;
    color: white;
}

.status-queued {
    background-color: #FFA500;
    /* Orange for Queued */
    color: white;
}

.btn-tab.active {
    background-color: #0d799d;
    color: #fff;
    border-color: #0d799d;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/*-------------  xxxx  --------------*/

/*-------------------------------------
    Forecast
-------------------------------------*/
.insights-page .main-wrapper,
.forecast-page .main-wrapper {
    display: flex;
    height: 100vh;
    width: 100%;
}

.message-container {
    text-align: center;
    max-width: 600px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;;
}

.message-container h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.message-container p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.icon {
    font-size: 3rem;
    color: #3fb3c3;
    margin-bottom: 15px;
}

.btn-home {
    background-color: #3fb3c3;
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    text-decoration: none;
}

.btn-home:hover {
    background-color: #3498db;
}

/*-------------  xxxx  --------------*/

/*-------------------------------------
    Site Map
-------------------------------------*/

.map-sec-full {
    width:100% !important;
    margin-top: 8px;
}
/*-------------  xxxx  --------------*/

/*-------------------------------------
    Assignments
-------------------------------------*/
.card-custom {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    flex: 1;
    margin: 10px 0px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.card-custom:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background-color: #e7f3ff;
    text-decoration: none;
}

.card-header-custom-total,
.card-header-custom-TotalSite {
    background-color: #018083;
    color: white;
    font-size: 1.2em;
}

.card-header-custom-active {
    background-color: #2ec083;
    color: white;
    font-size: 1.2em;
}

.card-header-custom-open {
    background-color: #FFA500;
    color: white;
    font-size: 1.2em;
}
.card-header-custom-todo,
.card-header-custom-to-do {
    background-color: #837d7d;
    color: white;
    font-size: 1.2em;
}

.card-header-custom-in-progress {
    background-color: #5fcad2;
    color: white;
    font-size: 1.2em;
}

.card-header-custom-completed {
    background-color: #1B97B9;
    color: white;
    font-size: 1.2em;
}

.cards-container {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
    flex-wrap: wrap;
    gap: 20px;
}

.card-body .card-text {
    font-size: 1rem;
}

.table-container {
    width: 100%;
    margin-bottom: 5px;
}

.table-responsive>.table-bordered {
    border: 1px solid #dee2e6;
}

.separator {
    height: 2px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
    margin: 40px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .cards-container {
        flex-direction: column;
    }

    .card-custom {
        margin-bottom: 20px;
    }
}

#backToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #2aa0ba;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
}

#backToTopBtn:hover {
    background-color: #1d8a93;
}

table.dataTable,
table.dataTable th,
table.dataTable td {
    font-size: 13px !important;
}

.edit-btn,
.cancel-btn {
    border: none;
    background: none;
    cursor: pointer;
    padding-left: 25px;
    color: inherit;
}

.edit-btn:hover,
.cancel-btn:hover {
    color: #007bff;
}

.datepicker {
    z-index: 9999 !important;
}

.datepicker-dropdown {
    font-size: 13px !important;
}

.form-control-sm {
    font-size: 13px !important;
    height: calc(1.5em + 0.5rem + 2px) !important;
}

.cancel-btn {
    display: none;
}

.highlight-changed {
    background-color: #ffe6e6 !important;
}

.disabled {
    pointer-events: none;
    opacity: 0.6;
}


.edit-btn.disabled {
    color: gray;
    cursor: not-allowed;
    opacity: 0.5;
    pointer-events: none;
}


.edit-btn.disabled:hover {
    color: gray;
    background-color: transparent;
    opacity: 0.5;
}

.filter-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 5px 15px;
    margin-top: 0px;
    margin-bottom: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);

    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #f0f0f0;
}

.filter-dropdown {
    width: 170px;

}

.header-container h1 {
    margin-bottom: 5px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: left;


}


/* Styling for the team name container */
.team-name-container {
    display: flex !important;
    align-items: center;
    background-color: #505050;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.2em;
    margin-top: -15px;
    justify-content: left;
}

/* Styling for team name label and name */
.team-name-label {
    font-size: 18px;
    color: #fff;
    margin-right: 5px;
}

.team-name {
    color: #fff;
    /* Same blue as the container for consistency */
    font-weight: 500;
}

/*-------------  xxxx  --------------*/

/*-------------------------------------
    Jobs Snapshot
-------------------------------------*/
.grid-item {
    width: 400px;
    padding: 20px;

    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-header-custom {
    display: flex;
    align-items: center;
    font-size: 1.2em;
    color: #333;
    margin-bottom: 20px;
}

.card-header-custom i {
    margin-right: 10px;
    color: #f39c12;
}

.header-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
    margin-left: 10px;
}

.sites-snapshot {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-left: 35px;
    padding: 15px 10px;
}

.snapshot-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 45px;
    border-radius: 8px;
    color: #ffffff;

    position: relative;
}

.total-sites-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: 0;
    left: -45px;
}

.total-sites {
    background-color: #027e83;
}

.sub-category-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    margin-left: 125px;
    margin-top: 0px;
    left: -100px
}

.completed {
    background-color: #1a97b9;
}

.in-progress {
    background-color: #5fcad2;
}

.not-started {
    background-color: #837d7d;
}

.queuejob {
    background-color: #FFA500;
}

.overduejob {
    background-color: #de1409
}

.snapshot-value {
    font-size: 18px;
}

.snapshot-label-outside {
    font-size: 14px;
    color: #34495e;
    margin-top: 5px;
    text-align: center;
    font-weight: 600;
}

/* External labels for other categories */
.external-label {
    font-size: 14px;
    color: #34495e;
    position: absolute;
    left: 110%;
    white-space: nowrap;
}

/* Connector lines */
.connector-line.vertical {
    background-color: #cccccc;
    width: 2px;
    height: 133px;
    position: absolute;
    left: -38px;
    top: 22px;
}

.connector-line.horizontal.total-sites-line {
    background-color: #cccccc;
    width: 75px;
    height: 2px;
    position: absolute;
    left: -70px;
    top: 22px;
}

.w-100 {
    width: 100% !important;
}

.w-12 {
    width: 12px !important;
}

.l-n75 {
    left: -75px !important;
}

.w-20 {
    width: 20px !important;
}

.l-n76 {
    left: -76px !important;
}

.w-82 {
    width: 82px !important;
}

.l-n87 {
    left: -87px !important;
}

.w-300 {
    width: 300px !important;
}
.h-220 {
    height: 220px !important;
}

.connector-line.horizontal.completed-line {
    background-color: #cccccc;
    width: 64px;
    height: 2px;
    position: absolute;
    left: -63px;
    top: 22px;
}

.connector-line.horizontal.in-progress-line {
    background-color: #cccccc;
    width: 40px;
    height: 2px;
    position: absolute;
    left: -38px;
    top: 88px;
}

.connector-line.horizontal.not-started-line {
    background-color: #cccccc;
    width: 40px;
    height: 2px;
    position: absolute;
    left: -38px;
    top: 153px;
}

/*-------------  xxxx  --------------*/

/*-------------------------------------
    Map styles
-------------------------------------*/

.marker {
    background-size: cover;
    width: 30px;
    height: 30px;
    border-radius: 30%;
    cursor: pointer;
}

.mapboxgl-popup-content {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 5px;
    font-family: Arial, sans-serif;
    width: 290px;
    border: 1px solid #e0e0e0;
}

.popup-row {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.popup-label {
    width: 125px;
    /* Adjust as needed to fit the longest label */
    font-weight: 600;
    color: #34495e;
    text-align: right;
    margin-right: 10px;
    /* Space between label and value */
}

.popup-value {
    flex: 1;
    /* Makes the value take the remaining space */
    font-weight: 400;
    color: #519EB7;
    text-align: left;
    /* Aligns the value to the left */
}

.popup-button-container {
    text-align: center;
    margin-top: 10px;
}

.popup-button {
    background-color: #519EB7;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
    font-size: 14px;
    width: 100px;
    transition: background-color 0.3s ease;
}

.popup-button:hover {
    background-color: #407a8c;
}


button[id^="popupButton_"] {
    color: #fff;
    background-color: #007bff;
    border: 1px solid #007bff;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    outline: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    background: linear-gradient(120deg, var(--myColor1) 0%, var(--myColor2) 100%);
    width: 100px;
}


button[id^="popupButton_"]:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    background: linear-gradient(-120deg, var(--myColor1) 0%, var(--myColor2) 100%)
}

/*-------------  xxxx  --------------*/

/*-------------------------------------
    Generic
-------------------------------------*/

.no-gap{padding:0px;}
.show-flex {
    display: flex !important;
}
.hide {
    display: none !important;
}
.f-12 {
    font-size: 12px !important;
}
.f-13 {
    font-size: 13px !important;
}
.f-16 {
    font-size: 16px !important;
}
.f-24 {
    font-size: 24px !important;
}
.fw-700 {
    font-weight: 700 !important;
}
.hidden {
    display: none !important;
}
.mb-10 {
    margin-bottom: 10px !important;
}
.mt-10 {
    margin-top : 10px !important;
}
.mt-18 {
    margin-top : 18px !important;
}
.cursor-pointer {
    cursor: pointer !important;
}
.h-47 {
    height: 47px !important;
}

.flex-centered {
    display: flex;
    align-items: center;
    justify-content: center;
}

.disabled-link {
    pointer-events: none;
    opacity: 0.5;
}

.disabled-link:hover::after {
    content: attr(title);
    background-color: #333;
    color: #fff;
    padding: 5px;
    position: absolute;
    z-index: 1001;
    white-space: nowrap;
    border-radius: 3px;
}

/*-------------------------------------
    Responsive
-------------------------------------*/
@media all and (min-width:768px){
    .mobile{display: none;}
    .desktop{display: block;}
}
@media all and (max-width:767px){
    .desktop{display: none;}
}

/*-------------  xxxx  --------------*/

/*-------------------------------------
    Home
-------------------------------------*/
.main-wrapper {
    padding-top: 75px;
    display: flex;
    position: relative;
    z-index:1;
    font-size: 12px;
}
.righ-sidebar {
    padding: 0;
    max-width: 0;
    width: 100%;
    top: 10px;
    right: 0%;
    position: absolute;
    z-index: 1;
    height: calc(100vh - 100px);
    overflow: auto;
    background: #fff;
    transition: all 0.3s;
}
.righ-sidebar.active{
    padding: 15px 15px 78px;
    max-width: 382px;
}
.righ-sidebar2 {
    padding: 0;
    max-width: 0;
    width: 100%;
    top: 0px;
    right: 0%;
    position: absolute;
    z-index: 1;
    height: calc(100vh - 100px);
    overflow: auto;
    background: #fff;
    transition: all 0.3s;
}
.righ-sidebar2.active{
    padding: 35px;
    max-width: 470px;
}
.site-app-box .icon-box {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding-top: 6px;
}
.site-app-box .icon-box .icon > a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(15, 135, 174);
    background: linear-gradient(147deg, rgba(15, 135, 174, 0.10127801120448177) 0%, rgba(82, 196, 203, 0.10407913165266103) 100%);
    border-radius: 4px;
}
.vodafone-color .site-app-box .icon-box .icon > a{
    background:rgba(238,48,35,0.1) ;
}
.vodafone-color .site-app-box .icon-box .icon > a img {
    filter: invert(48%) sepia(13%) saturate(3207%) hue-rotate(130deg) brightness(95%) contrast(80%);
}
.erucsson-color .site-app-box .icon-box .icon > a{
    background:rgba(0,33,99,0.1) ;
}
.site-app-box .icon-box .icon > a:hover{
    background: var(--gradient-blue);
}
.site-app-box .icon-box .icon > a:hover img{
    filter: brightness(0) invert(1);
}
.icon-button {
    position: absolute;
    top: 50px;
    right: 0px;/*-470 on click-*/
    z-index: 2;
    transition: all 0.3s;
}
.icon-button.active{
    right:382px;
}
.icon-button2 {
    position: absolute;
    bottom: 55px;
    right: 0px;/*-470 on click-*/
    z-index: 2;
    transition: all 0.3s;
}
.icon-button2.active{
    right:470px;
}
.site-status-box,
.site-app-box {
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
    padding: 15px 15px;
    margin-bottom: 15px;
}
.site-status-box{
    margin-bottom: 0px;
}
.site-status-box .text-box{
    background: rgba(107, 114, 128, 0.1);
    border-radius: 5px;
}
.site-status-box .text-box ul{
    list-style: none;
    padding-left: 0px;
}
.site-status-box .text-box ul li{
    padding: 10px;
    display: flex;
    font-size: 12px;
    border-bottom: 1px solid rgba(107, 114, 128, 0.1);
    flex-direction: column;
}
.site-status-box .text-box ul li strong {
    width: 155px;
}

.text-box {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.text-box > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f7f7f7;
    border-radius: 5px;
}

.text-box > ul > li {
    display: flex !important;
    flex-direction: row !important;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.text-box > ul > li:last-child {
    border-bottom: none;
}

.text-box > ul > li > label {
    font-size: 14px;
    font-weight: bold;
    text-align: right;
    width: 40%;
    padding-right: 10px;
    color: #333;
}

.text-box > ul > li > span {
    font-size: 14px;
    text-align: left;
    width: 60%;
    color: #333;
    padding-top: 5px;
}

/* .main-content {
    padding: 30px  40px;
    width: calc(100% - 470px );
    overflow: hidden;
} */
.main-wrapper.sidebar-open .main-content{
    width: calc(100% - 120px);
}
.main-content .button-row {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 30px;
}
.main-content .button-row .top-row {
    margin-bottom: 20px;
}
.main-content .button-row .top-row,
.main-content .button-row .bottom-row{
    display: flex; 
    flex-wrap: wrap; 
    gap: 20px;
}
.main-content .text-icon-row {  
    display: flex; 
    justify-content: space-between;  
    gap: 20px; 
    padding-top: 30px;
}
.main-content .text-icon-row .box { 
    display: flex;  
    justify-content: space-between; 
    padding: 17px 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 3px rgba(0,0,0,0.2); 
    max-width: 20%;
    width: 100%;
    align-items: center;
}
.main-content .text-icon-row .box .icon {
    width: 57px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(15,135,174);
    background: linear-gradient(147deg, rgba(15,135,174,0.10127801120448177) 0%, rgba(82,196,203,0.10407913165266103) 100%);
    border-radius: 4px;
}
.main-content .text-icon-row .box p{
    margin:0; 
    font-size: 18px; 
    color: #898989;
}
.main-content .text-icon-row .box h2{
    margin:0px;     
    line-height: 0.7;
}

.graph-info-table,
.graph-sec .graph {
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
    margin-top:45px;
}
.graph-sec .graph canvas#projectProgressChart {
    width: 100% !important;
}
.graph-info-table table {
    border-spacing: 12px;
}
.graph-info-table table tbody tr {
    padding: 5px;
    box-shadow: 0px 0px 3px rgba(0,0,0,0.1);
}
.graph-info-table table tbody tr td:first-child{
    min-width: 150px; 
    color: var(--dark-black); 
    display: flex;
    align-items: center;
    gap: 5px;
}
.graph-info-table table tbody tr td{
    padding: 5px; 
    position: relative;
    text-align: center;
}
.graph-info-table table tbody tr td::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 2px;
    background: rgba(0,0,0,.2);
    left: 100%;
    top: 50%;
}
.graph-info-table table tbody tr td:last-child::after{
    display: none;
}
.graph-info-table thead th:first-child{
    border:none;
}
.graph-info-table thead th {
    font-size: 12px;
    border: 1px solid #0F87AE;
    border-radius: 5px;
    padding: 10px 5px;
}
span.green,
span.blue,
span.gray{
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 100%;
}
span.green {
    background:var(--greem);
}
span.blue {
    background:var(--blue2);
}
span.gray {
    background:var(--Not-Started);
}
.graph-info-table .status-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.graph-info-table .status-row .box{
    display: flex;
    align-items: center;
    gap:10px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0px 0px 3px rgba(0,0,0,0.1);
    padding: 5px;
}
.map-sec-full {
    min-height: calc(100vh - 155px);
}
.map-sec-full iframe{
    height: 100%;    
    position: relative;
    z-index: 0;
}
/*-------------  xxxx  --------------*/

/*-------------------------------------
    Assignment Page
-------------------------------------*/
.job-site-sec{
    padding: 50px 0;
}
.table-box table {
    border: 1px solid rgba(0,0,0,.2);
    overflow: hidden;
    border-radius: 10px;
    border-spacing: 0;
}
.table-box table thead{
    color: var(--white);
    background: var(--gradient-blue);
}
.table-box table thead th{
    color: var(--white);
}
.table-box table th, 
.table-box table td{
    padding: 10px 5px;
    border-right: 1px solid rgba(0,0,0,.2);
}
.table-box table tbody tr:nth-child(even){
    background-color: #f3f3f3;
}
.table-box .btn-box {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}
.no-gap{
    padding:0px;
}
.hide{
    display: none;
}
/*----------*/
.main-content.site-docs-page {
    padding-right: 0;
}
.site-docs-wrapper .left-box .box.address-box p{
    font-size: 16px;
}
.site-docs-wrapper .left-box .box p.sm{
    font-size: 14px; 
    color: #6B7280; 
    margin-bottom: 0;
}
.site-docs-wrapper .left-box .box p{
    font-size: 18px; 
    font-weight: 600;
    color: #131920;
}

.site-docs-wrapper .left-box .londitude,
.site-docs-wrapper .left-box .box-2 {
    display: flex;
    gap: 30px;
}
.site-docs-wrapper .inner-wrapper {
    display: flex;
    gap: 30px;
}
.site-docs-wrapper .inner-wrapper .left-box {
    max-width: 30%;
    width: 100%;
    background: #F9F9F9;
    border-radius: 10px;
    padding: 20px;
}
.site-docs-wrapper .inner-wrapper .left-box .link-box a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0;
}
.site-docs-wrapper .inner-wrapper .left-box .link-box a:hover{
    color: var(--dark-black);
}
.summery-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.site-docs-wrapper .inner-wrapper .right-box {
    background: #F9F9F9;
    padding: 30px;
    max-width: calc(100% - 30px);
    width: 100%;
}
.site-docs-wrapper .right-box .folders-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
    padding: 30px 0;
    margin-bottom: 30px;
}

.site-docs-wrapper .right-box .folders-row .box {
    text-align: center;
}
.site-docs-wrapper .right-box .folders-row .box p{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0px;
}
.site-docs-wrapper .right-box .folders-row .box p.sm{
    color: #6B7280;
    font-size: 14px;
}
.site-docs-wrapper .right-box .project-info .row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    border-radius: 10px;
    border: 1px solid rgba(19,25,32,0.1);
    font-size: 16px;
    font-weight: 600;
    align-items: center;
    padding: 10px ;
    margin: 15px 0;
}
    
.site-docs-wrapper .right-box .project-info .row .box .box-row {
    display: flex;
    gap: 15px;
}
.site-docs-wrapper .right-box .project-info .row p{
    margin-bottom: 0;
}
.site-docs-wrapper .right-box .project-info .row p.sm{
    font-size: 14px;
    font-weight: normal;
    color: #6B7280;
}
.site-docs-wrapper .right-box .project-info .row a{
    color:var(--dark-black); 
    font-weight: 600; 
    font-size: 16px;
}
.site-docs-wrapper .right-box .project-info .row .text-box p span{
    color:#6B7280; 
    font-family: inherit;
}
.site-docs-wrapper .right-box .project-info .row .link-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.site-docs-wrapper .right-box .ongoing-project{
    border-top: 1px solid rgba(19,25,32,0.1);
    padding-top: 20px;
}
.site-docs-wrapper .right-box .ongoing-project .heading-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-docs-wrapper .right-box .ongoing-project .heading-box p{
    color:#6B7280; 
    font-size: 16px; 
    font-weight: 600;
}

/*-------------  xxxx  --------------*/

/*-------------------------------------
    Footer
-------------------------------------*/
footer{
    color: var(--dark-black);
    text-align: center;
    /* display: grid;
    grid-template-columns: 1fr 1fr 1fr; */
    z-index: 3;
    background-color: #f8f9fa;
    border-top: 1px solid #ddd;
    padding: 15px 0;
    margin-top: auto;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
}
body.vodafone-color footer{
    background: #EE3023;
    color: var(--white);
}
.erucsson-color footer{
    background: #002163;
    color: var(--white);
}
body.vodafone-color footer .box img,
body.erucsson-color footer .box img {
    filter: 0;
    filter: brightness(0) invert(1);
}
footer p{
    font-size: 14px; 
    margin: 0;
}
footer .box:last-child{
    text-align: right;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 98%;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-box {
    /* //flex: 1; */
}

.footer-right img {
    max-height: 40px;
    width: auto;
    display: none; /* Hide the logo initially */
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-left, .footer-right {
        margin-bottom: 10px;
    }

    .footer-right img {
        max-height: 30px;
    }
}

/*-------------  xxxx  --------------*/

/*-------------------------------------
    Site Docs
-------------------------------------*/

.sitedocs-page .container {
    display: flex;
    max-width: 100%;
    height: 275px;
}

.sitedocs-page .left,
.sitedocs-page .right {
    padding: 20px;
}

.sitedocs-page .left {
    border-right: 1px solid #ddd;
    width: 50%;
    overflow-y: auto;
}

.sitedocs-page .right {
    width: 60%;
    display: none;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-left: 20px;
    max-height: 275px;
}

.sitedocs-page h1 {
    text-align: left;
    margin-bottom: 20px;
    padding-left: 20px;
}

.tree ul {
    list-style-type: none;
    padding-left: 20px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease-out;
}

.tree ul.expanded {
    max-height: 1000px;
}

.tree li {
    margin: 10px 0;
    cursor: pointer;
    position: relative;
    padding-left: 20px;
    list-style: none;
}

.tree .folder::before,
.tree .file::before {
    position: absolute;
    left: 0;
}

.tree .folder::before {
    content: url('https://cdn-icons-png.flaticon.com/16/148/148947.png');
}

.tree .file::before {
    content: url('https://cdn-icons-png.flaticon.com/16/148/148921.png');
}

.tree .file.pdf::before {
    content: url('https://cdn-icons-png.flaticon.com/16/337/337946.png');
}

.tree .file.excel::before {
    content: url('https://cdn-icons-png.flaticon.com/16/337/337947.png');
}

.tree .file.word::before {
    content: url('https://cdn-icons-png.flaticon.com/16/337/337949.png');
}

.tree .file.jpg::before {
    content: url('https://cdn-icons-png.flaticon.com/16/337/337952.png');
}

.tree .first-level>li {
    list-style-type: none;
}

.tree .first-level>li::before {
    content: counter(first-level) ". ";
    counter-increment: first-level;
    position: absolute;
    left: -20px;
    top: 0;
}

.tree .first-level {
    counter-reset: first-level;
}

.thumbnails-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 200px;
    flex-wrap: wrap;
    overflow-y: auto;

}

.watermark {
    position: absolute;
    font-size: 36px;

    color: rgba(0, 0, 0, 0.1);

    pointer-events: none;

}

.thumbnail-box {
    width: 120px;
    text-align: center;
    padding: 8px;
    gap: 8px;
    transition: box-shadow 0.3s ease;
    cursor: pointer;
    display: none;
    flex-direction: column;
    align-items: center;
}

.thumbnail-box img {
    max-width: 50px;
    margin-bottom: 10px;
}

.thumbnail-box a {
    text-decoration: none;
    color: #333;
    font-size: 12px;
}

.cute-shadow-line {
    width: 90%;
    margin: 20px auto;
    border: none;
    height: 1px;
    background: #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sitedocs-page .table-container {
    padding: 20px;
}

#example_wrapper .dataTables_wrapper .dataTables_length,
#example_wrapper .dataTables_wrapper .dataTables_filter,
#example_wrapper .dataTables_wrapper .dataTables_paginate,
#example_wrapper .dataTables_wrapper .dataTables_info {
    font-size: 0.9rem;
}

#example_wrapper .dataTables_wrapper .dataTables_length select,
#example_wrapper .dataTables_wrapper .dataTables_filter input {
    border: 1px solid #ddd;
    padding: 0.3em;
    border-radius: 4px;
    font-size: 1rem;
}

#example thead th {
    font-weight: bold;
    background-color: #f1f1f1;
    border-bottom: none;
}

#example tbody td {
    font-size: 12px;
    font-weight: normal;
    color: #333;
    border-bottom: 1px solid #ddd;
}

#example tbody tr:nth-child(odd) {
    background-color: #fff;
}

#example tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

#example thead th,
#example tbody td {
    padding: 12px;
    text-align: left;
}

/* .dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0.2em 0.6em;
    margin-left: 2px;
} */

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #007bff;
    color: white !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #e9ecef;
    color: #333 !important;
}

.dataTables_wrapper .dataTables_length select {
    width: auto !important;
}

.table-container td a.view-file,
.table-container td a.download-file {
    padding: 10px;
}

#example td:nth-child(5) {
    text-align: center;
}

.sticky-icons {
    position: fixed;
    right: 0px;
    top: 270px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.sticky-icons .icon {
    width: 40px;
    height: 40px;
    background-color: #178eb1;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.sticky-icons .icon:hover {
    background-color: #4abdc8;
}

.sticky-icons .icon i {
    font-size: 20px;
}

.sitedocs-page #error-message {
    background-color: #f8d7da;
    /* Light red background */
    color: #721c24;
    /* Dark red text color */
    border: 1px solid #f5c6cb;
    /* Red border */
    border-radius: 5px;
    /* Rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* Shadow for emphasis */
    padding: 20px;
    /* Space inside the box */
    text-align: center;
    /* Center the text */
    margin: 20px auto;
    /* Center the box horizontally */
    max-width: 600px;
    /* Limit the width */
}

.sitedocs-page #error-message .fa-exclamation-triangle {
    color: #721c24;
    /* Icon color */
    font-size: 24px;
    /* Icon size */
    margin-right: 10px;
    /* Space between icon and text */
}

.sitedocs-page #error-message span {
    font-size: 18px;
    /* Text size */
    font-weight: bold;
    /* Make text bold */
}

/*-------------  xxxx  --------------*/

/*-------------------------------------
    Sidebar
-------------------------------------*/

.left-sidebar {
    position: fixed;
    top: 85px;
    left: 0;
    width: 250px;
    height: calc(100% - 45px);
    background-color: white;
    color: #34495e;
    transition: width 0.3s ease;
    border-right: 1px solid #ddd;
    overflow-y: auto;
}


.left-sidebar .toggle-left-sidebar {
    display: block;
    padding: 15px;
    color: #34495e;
    font-size: 20px;
    text-align: left;
    cursor: pointer;
    margin-bottom: 0px;
}

.left-sidebar.collapsed .toggle-left-sidebar {
    text-align: center;
}

.left-sidebar .inner-wrap {
    padding-top: 0px;
}

.left-sidebar .nav-box ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.left-sidebar .nav-box ul li {
    position: relative;
}

.left-sidebar .nav-box ul li a {
    display: flex;
    align-items: center;
    padding: 14px 15px;
    color: #34495e;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.left-sidebar .nav-box ul li a i {
    font-size: 18px;
    margin-right: 20px;
    width: 20px;
    text-align: center;
}

.left-sidebar .nav-box ul li.active>a,
.left-sidebar .nav-box ul li a:hover {
    color: #46b9c6;
}

.left-sidebar .nav-box ul li.has-submenu>a::after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    margin-left: auto;
}

.left-sidebar .nav-box ul li .nav-dropdown {
    display: none;
    list-style-type: none;
    padding-left: 28px;
}

.left-sidebar .nav-box ul li.has-submenu.open .nav-dropdown {
    display: block;
}

.left-sidebar .nav-dropdown li a {
    padding: 8px 0;
    font-size: 13px;
    padding-left: 28px;
}

.left-sidebar .help-settings-box {
    position: absolute;
    bottom: 190px;
    width: 100%;
    padding: 0 20px;
    text-align: left;
}

.left-sidebar .help-settings-box a {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: #34495e;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.left-sidebar .help-settings-box a i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

.left-sidebar .help-settings-box a:hover {
    color: #1abc9c;
}

.content-area {
    width: 100%;
    margin-left: 230px;
    overflow: hidden;
    padding: 20px 20px 60px;
    transition: margin-left 0.3s ease;
}

.grey-background {
    background-color: #ecf0f1 !important;
}

.light-background {
    background-color: #f9f9f9 !important;
}

.left-sidebar.collapsed {
    width: 60px !important;
}

.left-sidebar.collapsed .toggle-left-sidebar {
    padding: 15px 0;
    text-align: center;
}

.left-sidebar.collapsed .nav-box ul li a {
    justify-content: center;
    padding: 15px;
    font-size: 0;
}

.left-sidebar.collapsed .nav-box ul li a i {
    margin-right: 0;
    font-size: 18px;
}

.left-sidebar.collapsed .help-settings-box a span {
    display: none;
}

.content-area.collapsed {
    margin-left: 60px;
}

/*-------------  xxxx  --------------*/

/*-------------------------------------
    Responsive Design
-------------------------------------*/
@media all and (min-width:1600px){
    section.login-sec {
        margin-top: -100px;
        padding-bottom: 100px;
        position: relative;
        min-height: calc(100vh - 335px);
    }
/* } */
/* @media all and (max-width:1600px){
    .main-wrapper .left-sidebar{
        width: 220px;
    } */

    .main-wrapper .main-content{
        width: calc(100% - 220px);
    }
}
@media all and (max-width:1440px){
    .site-status-box, .site-app-box{
        padding: 20px 15px;
    }
    .site-app-box .icon-box .icon > a{
        width:55px;
        height: 55px;
    }
    .banner{
        min-height: 284px;
    }
    section.login-sec {
        margin-top: -70px;
        padding-bottom: 55px;
        min-height: calc(100vh - 269px);
    }
    .login-form-box{
        padding: 31px 30px; 
    }
}
@media all and (max-width:1280px){
    .login-form-box form {
        margin-top: 38px;
    }
}

@media all and (max-width:1228px){
    .banner {
        min-height: 243px;
    }
    section.login-sec{
        min-height: calc(100vh - 298px);
    }
    .input {
        margin-bottom: 15px;
    }
    .login-form-box form {
        margin-top: 28px;
    }
}

@media all and (min-width:768px){
    .mobile{
        display: none;
    }
    .desktop{
        display: block;
    }
}
@media all and (max-width:767px){
body,
label,
footer p{
    font-size: 16px;
}
h1{
    font-size:35px;
}
.btn-primary, a.btn-secondary{
    font-size: 16px;
}
.banner{
    min-height: 280px;
}
section.login-sec {
    margin-top: -65px;
    padding-bottom: 60px;
}
.desktop{
    display: none;
}
}

@media screen and (max-width: 600px) {
    .graph-info-table table {
      overflow-x: auto;
      display: block;
    }
}

@media all and (max-width:375px){
    .login-form-box .button-group {
        gap:15px;
    }
    .login-form-box .button-group a { 
        width: 100%;  
    }
}

.leaflet-control-attribution.leaflet-control {
    display: none;
}

#error-message {
    padding: 20px;
    text-align: center;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin: 20px auto;
    max-width: 600px;
}
#error-message>i {
    font-size: 24px;
    margin-right: 10px;
}
#error-message>span {
    font-size: 18px;
    font-weight: bold;
}

.user-pro .dropdown .dropdown-menu {
    display: none !important;
}

.user-pro .dropdown.show .dropdown-menu {
    display: block !important;
}

.settings-page .file-input-wrapper {
    display: flex;
    align-items: center;
}
.settings-page .file-text {
    margin-right: 10px;
}
.settings-page .choose-file-btn {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
.settings-page .file-input {
    display: none;
}
.settings-page .icon {
    margin: 0px;
    cursor: pointer;
}
.settings-page input::placeholder {
    color: #cccccc; /* Light grey color */
    opacity: 1; /* Make sure the opacity is fully opaque */
}