:root {
    --green-main-color: #00A0A9;
    --default-font: Helvetica, Arial, sans-serif;
    --default-chat-bg: #E4DDD6;
    --default-darkmode-color : #09304A;

}
body, h1, h2, h3, h4, h5, h6  {
    font-family: Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.dark-mode {
    background-color: var(--default-darkmode-color) !important;
    color: var(--default-darkmode-color) !important;
}
/* ---home styling---  */
.sidebar {
    width: 381px; /* Adjust sidebar width as needed */
    height: 100%;
    background-color: var(--green-main-color);
    color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    padding-top: 20px;
}

.company-icon {
    margin-top: 10px;
    text-align: center;
    margin-bottom: 50px;
}

.company-icon img {
    
    width: 100px; /* Adjust company icon size as needed */
    height: auto;
}
.company-icon label {
    font-family: Arial, Helvetica, sans-serif;
    display: block;
    font-size: 14px;
}

.menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu li {
    padding: 15px;
    /* border-bottom: 1px solid #555; */
}

.menu li:last-child {
    border-bottom: none;
}

.menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
}

.menu li a:hover {
    background-color: #555;
}



.topbar-container {
    margin-left: 350px; 
    /* position: relative; */
    padding: 10px;
    border-style: none none inset none;
    
}

.switch {
    position: relative;
    display: inline-block;
    background-color: var(--green-main-color);
    width: 50px;
    height: 25px;
    margin-left: 170px;
    
  }
  
  .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: white;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px white;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  /* Rounded sliders */
.slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
    background-color: var(--green-main-color);
  }

  .footer-menu {
    /* background-color: #333; */
    color: #fff;
    text-align: left;
    padding: 10px 0;
    position: fixed;
    bottom: 50px;
    width: 100%;
    display: flex; /* Use flexbox */
    
}
.footer-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    
}
.footer-menu ul li {
    margin-right: 15px;
}
.footer-menu ul li:last-child {
    margin-right: 0;
}
.footer-menu ul li a {
    color: #fff;
    text-decoration: none;
}

/* icon section  */
.menu li i {
    width: 20px; 
    height: 20px;
    background-size: cover;
    display: inline-block;
    margin-right: 20px;
}
.icon-home {
    background-image: url('styling/images/home/home.png'); /* Path to your PNG image */
}
.icon-inbox {
    background-image: url('styling/images/home/inbox.png'); /* Path to your PNG image */
}

.icon-campaign {
    background-image: url('styling/images/home/marketing.png'); /* Path to your PNG image */
}

.icon-contact {
    background-image: url('styling/images/home/phone-book.png'); /* Path to your PNG image */
}

.icon-tagmaster {
    background-image: url('styling/images/home/ribbon.png'); /* Path to your PNG image */
}

.icon-role {
    background-image: url('styling/images/home/friends.png'); /* Path to your PNG image */
}

.icon-user {
    background-image: url('styling/images/home/people.png'); /* Path to your PNG image */
}
.icon-darkmode {
    background-image: url('styling/images/home/moon.png'); /* Path to your PNG image */
}

.icon-logout {
    background-image: url('styling/images/home/out.png'); /* Path to your PNG image */
}


/* navbar */


.custom-navbar {
    background-color: none;

}
.custom-navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.custom-navbar li {
    float: left;
}

.custom-navbar li a{
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}


.search-input {
    width: 406px !important;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 1px;
    font-size: 10px;
    background-color: white;
    background-image: url('images/home/search.png');
    background-position: 5px 5px; 
    background-repeat: no-repeat;
    background-size: 5%;
    /* padding: 12px 20px 12px 40px; */
    text-indent: 20px;
    height: 31px !important; 
    /* margin-left: 40px; */
}
::placeholder{
    opacity: 0.5;
}
.profile-picture {
    width: 40px;
    height: 40px;
    border-radius: 50%; /* to make it circular */
    overflow: hidden; /* hide overflow */
}
.profile-title {
    
}
.profile-title label {
    font-size: 14px;
}

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* cover entire area */
}

.chat-container{
    position: fixed;
    width: 40%;
    height: 100%;
    left: 400px;
    border-style: none inset none none;
}

.chat-header {
    margin-top: 25px;
}

.campaign-container {
    position: fixed;
    margin-left: 1100px;
}

.campaign-header {
    margin-top: 25px;
}

.max-div-heigh {
    height: calc(100vh - 56px) !important;
}

.disabled-padding {
    padding-right: 0 !important;
    padding-left: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.disabled-margin {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.disabled-border {
    border: none none none none !important;
}

@media (min-width: 992px) {
    .page-wrapper {
        margin-left: 288px!important;
    }
    .custom-size-navbar {
        min-width: 18rem;
    }
    .custom-responsive-li {
        display: none !important;
    }
    
}
@media (max-width: 992px) {
    .footer-menu {
        display: none !important;
    }
}

/* @media (max-height: 796px) {
    .footer-menu {
        display: none !important;
    }
}
@media (min-height: 796px) {
    .footer-menu {
        display: flex !important;
    }
} */

@media (max-width: 1025px) {
    .login-image {
        display: none;
    }
}

.custom-green-color {
    color: var(--green-main-color) !important;
}

.custom-border-green-color {
    border-color: var(--green-main-color) !important;
}