@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body,
html .signin {
    height: 100%;
    margin: 0;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}
/* ----------- start signin page styling ----------------*/
h1 h2 h3 h4 h5 h6 p {
    font-family: "Poppins";
}
.main-container-signin {
    height: 100vh;
}

.left-side-signin {
    background: #f7f7fc;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px;
    text-align: left;
    height: 100vh;
}

.signin .logo {
    width: 150px;
    margin-bottom: 20px;
}

.left-side-signin h2 {
    color: #183b56;
    font-size: 31px;
    font-weight: 600;
}

.left-side-signin h2 .purple-n {
    color: #6f42c1;
}

.left-side-signin p {
    font-family: "Poppins";
    color: #92929d;
    font-size: 16px;
    font-weight: 500;
}

.illustration {
    width: 80%;
    max-width: 400px;
}
/*right side of signin*/

.right-side-signin {
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    height: 100vh;
}

.sign-in-box {
    width: 100%;
    max-width: 400px;
    padding: 30px;
}

.sign-in-box h3 {
    color: #11142d;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
}

.sign-in-box .title-color {
    font-family: "Poppins";
    font-weight: 600;
    color: #6f42c1;
}

.sign-in-box p {
    font-family: "Poppins";
    color: #92929d;
    font-size: 16px;
    margin-bottom: 20px;
}

.form-group label {
    color: #11142d;
    font-size: 16px;
    font-weight: 500;
}

.sign-in-box .form-group input {
    height: 56px;
    padding: 16px;
    border: 1px solid #6f42c1;
    border-radius: 8px;
    font-size: 16px;
}

.forgot-password {
    color: #9a9ab0;
    font-size: 14px;
    font-weight: 600;
}
.input-group-text {
    background-color: transparent;
    border: none;
    padding: 0 10px;
}
.input-group .form-control {
    padding-right: 40px;
    border-radius: 8px !important;
}
.input-group-append {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.sign-in-btn {
    margin-top: 30px !important;
    background: #6f42c1 !important;
    color: white !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    border-radius: 8px !important;
    padding: 14px 0 !important;
    border: none !important;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5) !important;
}
/* ----------- end signin page styling ----------------*/

/* ----------- start dashboard page styling ----------------*/
body.dashboard {
    background: #f7f7fc;
    height: 100vh;
    display: flex;
}

.main-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
}

.sidebar,
.main-content,
.rightside-content {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.sidebar {
    flex: 0 0 20%;
    background: #ffffff;
    box-shadow: 4px 0px 30px 0px #0000001a;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-content {
    flex: 1;
    padding: 40px;
    background: #f7f7fc;
}
.main-content::-webkit-scrollbar {
    display: none;
}

.rightside-content {
    flex: 0 0 25%;
    background: #ffffff;
    padding: 20px;
    box-sizing: border-box;
}
.sidebar-logo {
    width: 100px;
    height: 90px;
    margin-top: 10px;
}

.nav-link {
    color: #333;
    transition: background-color 0.3s;
}

.nav-link:hover {
    background-color: #f0f0f0;
}

.nav-link img {
    max-width: 16px;
    height: 16px;
}

.nav-link.active {
    background-color: #d1c4e9; /* Change to your desired active background color */
    color: #6200ea; /* Change to your desired active text color */
}

.header {
    background-color: #6f42c1;
    border-radius: 44px;
    height: 220px;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
}

.header-img {
    height: 200px;
    margin-right: 30px;
}

.header-text {
    padding-top: 25px;
    padding-left: 40px;
    color: #fff;
}
h1 {
    font-family: "Poppins";
    font-weight: 600;
    font-size: 26px;
}
.header-text h1 {
    font-family: "Poppins";
    font-weight: 600;
}

.header-text p {
    font-family: "Poppins";
    font-family: 12px;
    font-weight: 400;
}
.content-section {
    padding: 20px;
}
.tabs {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-family: "Poppins";
}

.tabs .tab {
    margin-right: 20px;
    font-weight: 400;
    font-size: 16px;
    color: #92929d !important;
    cursor: pointer;
}

.tabs .tab.active a {
    font-weight: bold;
    color: #0e0e0e;
}

.add-button {
    margin-left: auto;
    background-color: #6f42c1;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
}

.dataTables_wrapper .dataTables_filter input {
    border: 2px solid #6f42c1;
    border-radius: 5px;
    padding: 5px 10px;
    transition: border-color 0.3s;
}

.dataTables_wrapper .dataTables_length select {
    border: 2px solid #6f42c1;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.dataTables_info {
    color: #6f42c1;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
}

.pagination li {
    margin: 0 5px;
}

.pagination li a,
.pagination li span {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #6f42c1;
    border: 1px solid #6f42c1;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.pagination li a:hover,
.pagination li span:hover {
    background-color: #6f42c1;
    color: #fff;
}

.pagination li.active a,
.pagination li.active span {
    background-color: #6f42c1 !important;
    border: 1px solid #6f42c1 !important;
    color: #fff;
}

thead th {
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: none !important;
}

tbody tr {
    border: none !important;
}

table {
    border: none !important;
}

tbody tr.active-row {
    background-color: #6f42c1 !important;
    color: #fff;
}

tbody tr:nth-child(odd) td {
    background-color: #eee5ff;
}

tbody tr:nth-child(even) td {
    background-color: #f7f7fc;
}

.table {
    border-collapse: collapse;
}

.table td,
.table th {
    border: none !important;
}

.content-section h1 {
    font-weight: 600;
    font-family: "Poppins";
}
.rightside-content {
    background-color: #ffffff;
    padding: 10px;
}
.right-notification {
    width: 30px;
    height: 30px;
    color: #6f42c1;
    cursor: pointer;
}
.notification-heading h5 {
    font-weight: 600;
    color: #11142d;
}
.right-gmail {
    color: #898996;
    font-weight: 400;
    font-size: 12px;
}
.profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 10px 0;
}
.dropdown-menu.notification-dropdown {
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    left: auto;
    right: 0; /* Aligns the dropdown to the left side */
    z-index: 1050; /* Ensure the dropdown is above other content */
    position: absolute;
}
.notification-title {
    font-weight: 700;
    color: #11142d;
}
.view-all {
    color: #6f42c1;
    font-weight: 600;
}
.notification-item {
    color: #898996;
    font-size: 14px;
}
.notification-time {
    font-size: 12px;
    color: #6f42c1;
    text-align: right;
}

/* RIGHT SIDE BAR CALENDAR STYLING */

.calendar-section {
    padding-top: 10px;
}

.calendar-header {
    margin-bottom: 10px;
    padding-right: 10px; /* Default padding */
}
/* Calendar Header */
/* Base styling for the calendar-header */

/* For screens around 15.6 inches or wider (1366px and above) */
@media (min-width: 1366px) {
    .calendar-header {
        margin-bottom: 10px;
        padding-right: 0.5rem;
    }
}

/* For smaller laptops/screens (below 1366px) */
@media (max-width: 1366px) {
    .calendar-header {
        margin-bottom: 10px;
        padding-right: 1.5rem;
    }
}

/* For even smaller screens (below 1200px) */
@media (max-width: 1200px) {
    .calendar-header {
        margin-bottom: 10px;
        padding-right: 3.5rem;
    }
}

/* For very small screens (below 992px) */
@media (max-width: 992px) {
    .calendar-header {
        margin-bottom: 10px;
        padding-right: 6.5rem;
    }
}

/* End Calendar Header */

.calendar-title span {
    font-size: 16px;
    font-weight: 700;
    font-family: "Poppins";
    color: #11142d;
}

.form-control-sm {
    width: auto;
}
.gradient-bg {
    background: #ffffff;
    border: 1px solid #ece3fd;
    color: #11142d;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    box-shadow: inset 0 0 5px rgba(216, 241, 255, 0.8); /* Inner shadow with color #D8F1FF */
}
.gradient-bg option {
    font-family: "Poppins";
    color: #11142d;
    background: #ffffff;
    font-weight: 600;
    font-size: 15px;
}
.calendar-days {
    /* Flex container styling */
    display: flex;
    justify-content: space-around;
}

/* .btn-calendar {
    width: 30px;
    height: 70px;
    background-color: #ffffff;
    border: 2px solid #ece3fd;
    color: #183b56;
    font-size: 20px;
    font-weight: 800;
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(216, 241, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5px;
    margin: 3px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
} */

/* .btn-calendar .day {
    font-size: 14px;
    font-weight: 600;
} */
/*
.btn-calendar.active {
    background-color: #6f42c1;
    color: #ffffff;
    box-shadow: inset 0 0 5px rgba(216, 241, 255, 0.8);
} */

.calendar-section {
    padding-top: 10px;
}

.calendar-title span {
    font-size: 16px;
    font-weight: 700;
    font-family: "Poppins";
    color: #11142d;
}

.form-control-sm {
    width: auto;
}

.gradient-bg {
    background: #ffffff;
    border: 1px solid #ece3fd;
    color: #11142d;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    box-shadow: inset 0 0 5px rgba(216, 241, 255, 0.8);
}

.gradient-bg option {
    font-family: "Poppins";
    color: #11142d;
    background: #ffffff;
    font-weight: 600;
    font-size: 15px;
}

/* Calendar days container */
.calendar-days {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow-x: auto; /* Allow horizontal scrolling */
    white-space: nowrap; /* Prevent the buttons from wrapping */
    padding-bottom: 10px; /* Optional: space below the calendar buttons */
}

/* Ensure buttons are inline and scrollable */
.calendar-days::-webkit-scrollbar {
    height: 6px; /* Smaller scrollbar for horizontal scrolling */
}

.calendar-days::-webkit-scrollbar-thumb {
    background-color: #6f42c1;
    border-radius: 10px;
}

/* Button styling */
.btn-calendar {
    width: 39.2px; /* 2% smaller than the original 40px */
    height: 68.6px; /* 2% smaller than the original 70px */
    background-color: #ffffff;
    border: 2px solid #ece3fd;
    color: #183b56;
    font-size: 20px;
    font-weight: 800;
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(216, 241, 255, 0.8); /* Inner shadow */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3px;
    margin: 3px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s; /* Smooth transition for hover effects */
}

.btn-calendar .day {
    font-size: 12px;
    font-weight: 600;
}

.btn-calendar.active {
    background-color: #6f42c1;
    color: #ffffff;
    box-shadow: inset 0 0 5px rgba(216, 241, 255, 0.8);
}

@media (max-width: 1250px) {
    .btn-calendar {
        width: 33.2px; /* 2% smaller than the original 40px */
        height: 64.6px; /* 2% smaller than the original 70px */
        background-color: #ffffff;
        border: 2px solid #ece3fd;
        color: #183b56;
        font-size: 18px;
        font-weight: 800;
        border-radius: 8px;
        box-shadow: inset 0 0 5px rgba(216, 241, 255, 0.8); /* Inner shadow */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 2px;
        margin: 3px;
        /* cursor: pointer; */
        transition: background-color 0.3s, border-color 0.3s; /* Smooth transition for hover effects */
    }
}

/* Container styling */
.calendar-time {
    height: 60px;
}

/* Icon styling */
.icon {
    height: 24px;
    width: auto;
    margin-right: 10px;
}

/* END RIGHT SIDE BAR CALENDAR STYLING */

/*Morning EVENING Buttons */

/* Button styling */
/* .btn-outline-primary {
    font-family: "Poppins", sans-serif;
    border-color: #ece3fd !important;
    color: #6f42c1;
    font-size: 16px;
    font-weight: 800;
    border-radius: 10px;
    padding: 5px 10px;
    background-color: #eff4f8;
}

.btn-morning,
.btn-evening {
    width: 48%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s, color 0.3s;
}

.btn-morning.active,
.btn-evening.active {
    background-color: #6f42c1 !important;
    color: #ffffff !important;
}

.btn-morning.active .icon,
.btn-evening.active .icon {
    fill: #ffffff !important;
    filter: brightness(0) invert(1);
}

.btn-evening:hover,
.btn-morning:hover {
    background-color: #6f42c1 !important;
    color: #ffffff !important;
}

.btn-evening:hover .icon,
.btn-morning:hover .icon {
    fill: #ffffff !important;
    filter: brightness(0) invert(1);
}
.btn-evening:hover .icon,
.btn-morning:hover .icon {
    filter: brightness(0) invert(1);
} */

/* General button styles */
.btn-outline-primary {
    font-family: "Poppins", sans-serif;
    border-color: #ece3fd !important;
    color: #6f42c1;
    font-size: 16px;
    font-weight: 800;
    border-radius: 10px;
    padding: 5px 10px;
    background-color: #eff4f8;
}
.btn-morning,
.btn-evening {
    font-family: "Poppins", sans-serif;
    width: 48%; /* Ensures buttons take up appropriate width */
    height: auto; /* Prevent height issues */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s, color 0.3s;
    padding: 10px 20px; /* Adjust padding for spacing inside buttons */
}

/* Active state for both morning and evening buttons */
.btn-morning.active,
.btn-evening.active {
    background-color: #6f42c1 !important; /* Purple background */
    color: #ffffff !important; /* White text */
}

/* 1. When .btn-evening is active, the image icon should turn white */
.btn-evening.active .icon {
    filter: brightness(0) invert(1); /* White color for active state */
}

/* 2. When .btn-morning is not active, the icon should be purple */
.btn-morning .icon {
    filter: brightness(0) saturate(100%) invert(34%) sepia(47%) saturate(1127%) hue-rotate(225deg) brightness(91%) contrast(102%);
    /* Purple color */
}

/* When .btn-morning is active, the icon should be white */
.btn-morning.active .icon {
    filter: brightness(0) invert(1); /* White color for active state */
}

/* Hover state for evening and morning buttons */
.btn-evening:hover,
.btn-morning:hover {
    background-color: #6f42c1 !important; /* Purple background */
    color: #ffffff !important; /* White text */
}

/* Hover state for icons inside the buttons */
.btn-evening:hover .icon,
.btn-morning:hover .icon {
    filter: brightness(0) invert(1); /* White color on hover */
}

/* Opposite button icon hover state */
.opposite .btn-evening:hover .icon,
.opposite .btn-morning:hover .icon {
    filter: brightness(0) invert(1); /* White color on hover */
}

/* Media queries for smaller screens */
@media (max-width: 1250px) {
    .morning-evening-button-section .d-flex {
        flex-direction: column; /* Stack the buttons on smaller screens */
        align-items: center; /* Center align the buttons */
    }

    .btn-morning,
    .btn-evening {
        width: 100%; /* Full width for buttons on smaller screens */
        margin-bottom: 10px; /* Space between buttons */
    }
}

@media (max-width: 576px) {
    .btn-morning,
    .btn-evening {
        width: 100%; /* Full width on mobile */
        margin-bottom: 10px;
    }
}

/*END Morning EVENING Buttons */

.icon {
    transition: filter 0.3s;
}

/* CLIENT RIGHT SIDE BAR SECTION */
/* .clients-section {
    padding: 4px;
}
.clients-list {
    background-color: #eee5ff;
    border-radius: 10px;
    margin-top: 20px;
}
.client-view .newclient h6 {
    font-size: 18px !important;
    font-weight: 600 !important;
    font-family: "Poppins", sans-serif !important;
}

.clients-section .btn-view-all {
    height: 35px;
    width: 80px;
    font-family: "Poppins";
    font-weight: 700;
    background: #6f42c1;
    color: #fff;
    border: none;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 10px;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.2);
}
.clients-list .client-item {
    border-bottom: 1px solid #cacaca;
    min-height: 70px;
}
.clients-list .client-item:last-child {
    border-bottom: none;
}
.clients-list .client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    margin-left: 15px;
}
.clients-list .client-info .client-name {
    font-size: 12px;
    font-weight: 600;
}
.clients-list .client-info .client-company {
    font-size: 10px;
    color: #767676;
} */

.clients-section {
    padding: 10px; /* Increase padding slightly for better spacing */
}

.clients-list {
    background-color: #eee5ff;
    border-radius: 10px;
    margin-top: 20px;
    padding: 15px; /* Ensure there's enough internal padding */
}

.client-view .newclient h6 {
    font-size: 18px !important;
    font-weight: 600 !important;
    font-family: "Poppins", sans-serif !important;
}

.clients-section .btn-view-all {
    height: 45px;
    width: 100px; /* Adjusted width for better button size */
    font-family: "Poppins";
    font-weight: 700;
    background: #6f42c1;
    color: #fff;
    border: none;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 10px;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.2);
}

.clients-list .client-item {
    border-bottom: 1px solid #cacaca;
    min-height: 70px;
    padding: 10px 0; /* Add padding for better spacing */
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    align-items: center;
}

.clients-list .client-item:last-child {
    border-bottom: none;
}

.clients-list .client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    margin-left: 15px;
}

.clients-list .client-info {
    flex: 1; /* Take up remaining space */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.clients-list .client-info .client-name {
    font-size: 14px;
    font-weight: 600;
}

.clients-list .client-info .client-company {
    font-size: 12px;
    color: #767676;
}

@media (max-width: 768px) {
    .clients-list .client-item {
        flex-direction: row; /* Keep the image and text side by side on medium screens */
    }

    .clients-list .client-img {
        margin-right: 10px; /* Adjust spacing for medium screens */
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .clients-list .client-item {
        flex-direction: column; /* Stack image and text vertically on small screens */
        text-align: center; /* Center-align content */
    }

    .clients-list .client-img {
        margin: 0 auto 10px auto; /* Center the image */
    }

    .clients-list .client-info .client-name,
    .clients-list .client-info .client-company {
        text-align: center; /* Ensure text is centered on smaller screens */
    }
}

/* END NEW CLIENTS RIGHT SIDE BAR */

/* RIGHT SIDE BAR CHARTS */
/* .stats-section {
    background: #eee5ff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.stats-section h6 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stats-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin-bottom: 20px;
}

.stats-item {
    display: flex;
    align-items: center;
}

.line-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-line {
    width: 5px;
    height: 40px;
    background-color: #000;
}

.text-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 10px;
}

.stats-number {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
}

.stats-label {
    font-size: 12px;
}

.stats-chart {
    display: flex;
    justify-content: center;
}

.chart-container {
    width: 150px;
    height: 150px;
    position: relative;
} */

.stats-section {
    background: #eee5ff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.stats-section h6 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stats-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap; /* Added to make content wrap on smaller screens */
}

.stats-item {
    display: flex;
    align-items: center;
    flex-basis: 30%; /* Set item to take 30% of the available width */
    margin-bottom: 15px;
}

.line-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-line {
    width: 5px;
    height: 40px;
    background-color: #000;
}

.text-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 10px;
}

.stats-number {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
}

.stats-label {
    font-size: 12px;
}

.stats-chart {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.chart-container {
    width: 150px;
    height: 150px;
    position: relative;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .stats-item {
        flex-basis: 45%; /* Adjusts to fit two items per row */
    }
    .chart-container {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .stats-item {
        flex-basis: 100%; /* Stacks the stats items vertically on mobile */
    }
    .chart-container {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
}

/* END RIGHT SIDE BAR CHARTS */

/* Scrollbar container */
::-webkit-scrollbar {
    width: 8px; /* Width of the entire scrollbar */
}

/* Scrollbar track */
::-webkit-scrollbar-track {
    background: #ffffff; /* Color of the track */
    border-radius: 10px;
}

/* Scrollbar thumb */
::-webkit-scrollbar-thumb {
    background-color: #6f42c1; /* Color of the scroll thumb */
    border-radius: 10px;
    border: 3px solid #6f42c1; /* Adds padding around thumb */
}

/* Scrollbar thumb when hovered */
::-webkit-scrollbar-thumb:hover {
    background: #6f42c1; /* Color of the thumb when hovered */
}
/* notification page*/
.content-section-notification {
    padding: 20px;
}
.content-section-notification img {
    width: 30px;
    height: 30px;
}
.content-section-notification h2 {
    font-weight: 500;
    font-family: "Poppins";
    font-size: 30px;
    color: #11142d;
}
.notification-header h5 {
    font-size: 14px;
    font-weight: 500;
    color: #7a7a7a;
    margin-bottom: 10px;
    padding: 20px;
}

.notification-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}
.notification-item img {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
.content {
    flex-grow: 1;
}
.time {
    white-space: nowrap;
}
.notification-buttons {
    display: flex;
    align-items: center;
}
.notification-buttons .delete-btn {
    border-radius: 8px;
}
.notification-buttons .mark-read-btn {
    border-radius: 8px;
    background-color: #6f42c1;
    color: #ffffff;
}
.notification-buttons .mark-read-btn:hover {
    background-color: #ffffff;
    color: #183b56;
    border-color: #dcdcdc;
}

.notification-buttons img,
.notification-buttons button {
    margin-right: 10px;
}
.list-section {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
}

.btn-primary {
    background-color: #6f42c1;
    border-color: #6f42c1;
}
.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545;
}
/*start notification setting */
.notificationSetting-list-section {
    border-radius: 10px;
    padding: 20px;
}

/* end notification setting */
.notification-setting {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 20px;
}

.notification-setting .toggle-wrapper {
    display: flex;
    flex-direction: column;
}

.notification-setting .toggle-label {
    font-weight: bold;
    color: #2e3a59;
}

.notification-setting .toggle-description {
    color: #888;
    font-size: 12px;
}

.notification-item .content {
    flex-grow: 1;
}
.custom-control-input:checked ~ .custom-control-label::before {
    background-color: #6f42c1;
    border-color: #6f42c1;
}

/* ----------------start assigned task styling --------------------*/
.container-assigned-task {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
}

.logo-upload {
    background-color: #e6e5ff;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 20px;
    position: relative;
}

.logo-upload img {
    max-width: 100%;
    height: 50px;
    border-radius: 8px;
}

.logo-upload button {
    margin-top: 10px;
}

.assigned-task-btns {
    display: flex;
    justify-content: flex-end;
}
.assigned-task-btns .discard-btn {
    background-color: #ffffff !important;
    color: #11142d;
}
.assigned-task-btns button {
    margin-left: 10px;
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* ----------------end assigned task styling --------------------*/

/* ----------------start add user styling --------------------*/
.input-group {
    position: relative;
}

.flag-select-container {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 10;
}

.flag-select-container img.flag {
    width: 24px;
    height: 24px;
    margin-right: 5px;
}

.flag-select-container select {
    border: none;
    background: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-left: 5px;
    padding-right: 20px;
    outline: none;
    font-size: 14px;
}

.flag-select-container img.dropdown-icon {
    width: 16px;
    height: 16px;
    position: absolute;
    right: 5px;
    pointer-events: none;
}

.input-group .form-control {
    padding-left: 70px;
}

.input-group-prepend .custom-select {
    display: block;
    width: auto;
    margin: 0;
}
.add-user-btn .employee-btn {
    border-color: #d0e3ff !important;
    background-color: #eff4f8 !important;
    color: #11142d;
    border-radius: 8px;
}

.add-user-btn .employee-btn:hover {
    background-color: #6f42c1 !important;
    color: #ffffff;
}
.add-user-btn .client-btn {
    background-color: #6f42c1;
    border-radius: 8px;
    border-color: #d0e3ff !important;
    color: #ffffff;
}
.adduser-end-btns {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
.adduser-end-btns .discard-btn {
    color: #183b56;
    background-color: #ffffff;
    border-color: #dcdcdc;
    border-radius: 8px;
}

.adduser-end-btns .discard-btn:hover {
    background-color: #6f42c1 !important;
    color: #ffffff;
}

.adduser-end-btns .save-changes-btn {
    color: #ffffff;
    background-color: #6f42c1;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.adduser-end-btns .save-changes-btn:hover {
    background-color: #ffffff;
    color: #183b56;
    border-color: #dcdcdc;
}
.assigned-task-btns .discard-btn {
    border-radius: 8px;
    background-color: #ffffff;
    color: #183b56;
    border-color: #dcdcdc;
}
.assigned-task-btns .discard-btn:hover {
    border-radius: 8px;
    background-color: #6f42c1 !important;
    color: #ffffff;
}
.assigned-task-btns .assigned-btn {
    border-radius: 8px;
    background-color: #6f42c1;
    color: #ffffff;
    border-color: #dcdcdc;
}
.assigned-task-btns .assigned-btn:hover {
    border-radius: 8px;
    background-color: #ffffff;
    color: #183b56;
    border-color: #6f42c1;
}
/* media page styling */

/*START SECTION FOR THE POSTS */

/* Ensure the main container and table take up the full width */
.table-container {
    width: 100%;
    padding: 5px;
    overflow-x: auto; /* Add scrolling if needed */
    /* background-color: transparent;  */
}

/* Full-width table */
.project-table {
    width: 100%;
    table-layout: auto; /* Ensure the table adapts based on content */
    border-collapse: collapse;
}

/* Ensure columns use full space */
.project-table th,
.project-table td {
    white-space: normal;
    text-align: left;
}

/* Adjust table header styling */
.project-table th {
    bgcolor: #ece3fd !important; /* Adjust the header background */
    font-weight: 600;
    text-transform: uppercase;
}

/* For responsive design */
.table-responsive {
    overflow-x: auto;
}

/* Optional: fix the hover state if any */
.project-table tr:hover {
    background-color: #f1f1f1; /* Optional hover state */
}

/* Optional: fix the odd/even row colors */
.project-table tr:nth-child(odd) {
    background-color: #f9f9f9; /* Adjust the background for odd rows */
}

.project-table tr:nth-child(even) {
    background-color: #ffffff; /* Adjust the background for even rows */
}

/* Remove the blue highlight if unintentional */
.project-table tr {
    background-color: transparent; /* Ensure the background of the rows is clear */
    opacity: 1; /* Ensure no unintended opacity is set */
}
/*END SECTION FOR THE POSTS */

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body,
html .signin {
    height: 100%;
    margin: 0;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}
/* ----------- start signin page styling ----------------*/
.main-container-signin {
    height: 100vh;
}

.left-side-signin {
    background: #f7f7fc;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px;
    text-align: left;
    height: 100vh;
}

.signin .logo {
    width: 150px;
    margin-bottom: 20px;
}

.left-side-signin h2 {
    color: #183b56;
    font-size: 31px;
    font-weight: 600;
}

.left-side-signin h2 .purple-n {
    color: #6f42c1;
}

.left-side-signin p {
    font-family: "Poppins";
    color: #92929d;
    font-size: 16px;
    font-weight: 500;
}

.illustration {
    width: 80%;
    max-width: 400px;
}
/*right side of signin*/

.right-side-signin {
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    height: 100vh;
}

.sign-in-box {
    width: 100%;
    max-width: 400px;
    padding: 30px;
}

.sign-in-box h3 {
    color: #11142d;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
}

.sign-in-box .title-color {
    font-family: "Poppins";
    font-weight: 600;
    color: #6f42c1;
}

.sign-in-box p {
    font-family: "Poppins";
    color: #92929d;
    font-size: 16px;
    margin-bottom: 20px;
}

.form-group label {
    color: #11142d;
    font-size: 16px;
    font-weight: 500;
}

.form-group input {
    height: 56px;
    padding: 16px;
    border: 1px solid #6f42c1;
    border-radius: 8px;
    font-size: 16px;
}

.forgot-password {
    color: #9a9ab0;
    font-size: 14px;
    font-weight: 600;
}
.input-group-text {
    background-color: transparent;
    border: none;
    padding: 0 10px;
}
.input-group .form-control {
    padding-right: 40px;
    border-radius: 8px !important;
}
.input-group-append {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.sign-in-btn {
    margin-top: 30px !important;
    background: #6f42c1 !important;
    color: white !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    border-radius: 8px !important;
    padding: 14px 0 !important;
    border: none !important;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5) !important;
}
/* ----------- end signin page styling ----------------*/

/* ----------- start dashboard page styling ----------------*/
body.dashboard {
    background: #f7f7fc;
    height: 100vh;
    display: flex;
}

.main-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
}

.sidebar,
.main-content,
.rightside-content {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.sidebar {
    flex: 0 0 20%;
    background: #ffffff;
    box-shadow: 4px 0px 30px 0px #0000001a;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-content {
    flex: 1;
    padding: 40px;
    background: #f7f7fc;
}
.main-content::-webkit-scrollbar {
    display: none;
}

.rightside-content {
    flex: 0 0 25%;
    background: #ffffff;
    padding: 20px;
    box-sizing: border-box;
}
.sidebar-logo {
    width: 100px;
    height: 90px;
    margin-top: 10px;
}

.nav-link {
    color: #333;
    transition: background-color 0.3s;
}

.nav-link:hover {
    background-color: #f0f0f0;
}

.nav-link img {
    max-width: 16px;
    height: 16px;
}

.nav-link.active {
    background-color: #d1c4e9;
    color: #6200ea;
}

.header {
    background-color: #6f42c1;
    border-radius: 44px;
    height: 220px;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
}

.header-img {
    height: 200px;
    margin-right: 30px;
}

.header-text {
    padding-top: 25px;
    padding-left: 40px;
    color: #fff;
}

.header-text h1 {
    font-family: "Poppins";
    font-weight: 600;
}

.header-text p {
    font-family: "Poppins";
    font-family: 12px;
    font-weight: 400;
}
.content-section {
    padding: 20px;
}
.tabs {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-family: "Poppins";
}

.tabs .tab {
    margin-right: 20px;
    font-weight: 400;
    font-size: 16px;
    color: #92929d !important;
    cursor: pointer;
}

.tabs .tab.active a {
    font-weight: bold;
    color: #0e0e0e;
}

.add-button {
    margin-left: auto;
    background-color: #6f42c1;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
}

.dataTables_wrapper .dataTables_filter input {
    border: 2px solid #6f42c1;
    border-radius: 5px;
    padding: 5px 10px;
    transition: border-color 0.3s;
}

.dataTables_wrapper .dataTables_length select {
    border: 2px solid #6f42c1;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.dataTables_info {
    color: #6f42c1;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
}

.pagination li {
    margin: 0 5px;
}

.pagination li a,
.pagination li span {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #6f42c1;
    border: 1px solid #6f42c1;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.pagination li a:hover,
.pagination li span:hover {
    background-color: #6f42c1;
    color: #fff;
}

.pagination li.active a,
.pagination li.active span {
    background-color: #6f42c1 !important;
    border: 1px solid #6f42c1 !important;
    color: #fff;
}

thead th {
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: none !important;
}

tbody tr {
    border: none !important;
}

table {
    border: none !important;
}

tbody tr.active-row {
    background-color: #6f42c1 !important;
    color: #fff;
}

tbody tr:nth-child(odd) td {
    background-color: #eee5ff;
}

tbody tr:nth-child(even) td {
    background-color: #f7f7fc;
}

.table {
    border-collapse: collapse;
}

.table td,
.table th {
    border: none !important;
}

.content-section h1 {
    font-weight: 600;
    font-family: "Poppins";
}
.rightside-content {
    background-color: #ffffff;
    padding: 10px;
}

.right-notification {
    width: 30px;
    height: 30px;
    color: #6f42c1;
    cursor: pointer;
}
.notification-heading h5 {
    font-weight: 600;
    color: #11142d;
}
.right-gmail {
    color: #898996;
    font-weight: 400;
    font-size: 12px;
}
.profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 10px 0;
}
.dropdown-menu.notification-dropdown {
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    left: auto;
    right: 0;
    z-index: 1050;
    position: absolute;
}
.notification-title {
    font-weight: 700;
    color: #11142d;
}
.view-all {
    color: #6f42c1;
    font-weight: 600;
}
.notification-item {
    color: #898996;
    font-size: 14px;
}
.notification-time {
    font-size: 12px;
    color: #6f42c1;
    text-align: right;
}
.calendar-section {
    padding-top: 10px;
}

.calendar-title span {
    font-size: 16px;
    font-weight: 700;
    font-family: "Poppins";
    color: #11142d;
}

.form-control-sm {
    width: auto;
}
.gradient-bg {
    background: #ffffff;
    border: 1px solid #ece3fd;
    color: #11142d;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    box-shadow: inset 0 0 5px rgba(216, 241, 255, 0.8); /* Inner shadow with color #D8F1FF */
}
.gradient-bg option {
    font-family: "Poppins";
    color: #11142d;
    background: #ffffff;
    font-weight: 600;
    font-size: 15px;
}
.calendar-days {
    /* Flex container styling */
    display: flex;
    justify-content: space-between;
}
/*
.btn-calendar {
    width: 45px;
    height: 70px;
    background-color: #ffffff;
    border: 2px solid #ece3fd;
    color: #183b56;
    font-size: 20px;
    font-weight: 800;
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(216, 241, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5px;
    margin: 3px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
} */

/* .btn-calendar .day {
    font-size: 14px;
    font-weight: 600;
}

.btn-calendar.active {
    background-color: #6f42c1;
    color: #ffffff;
    box-shadow: inset 0 0 5px rgba(216, 241, 255, 0.8);
} */
/* Container styling */
/* .calendar-time { */
/* height: 60px; */
/* } */

/* Icon styling */
.icon {
    height: 24px;
    width: auto;
    margin-right: 10px;
}
/*
.clients-section {
    padding: 4px;
}
.clients-list {
    background-color: #eee5ff;
    border-radius: 10px;
    margin-top: 20px;
}
.client-view .newclient h6 {
    font-size: 18px !important;
    font-weight: 600 !important;
    font-family: "Poppins", sans-serif !important;
}

.clients-section .btn-view-all {
    height: 35px;
    width: 80px;
    font-family: "Poppins";
    font-weight: 700;
    background: #6f42c1;
    color: #fff;
    border: none;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 10px;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.2);
} */
/* .clients-list .client-item {
    border-bottom: 1px solid #cacaca;
    min-height: 70px;
} */
/* .clients-list .client-item:last-child {
    border-bottom: none;
}
.clients-list .client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    margin-left: 15px;
}
.clients-list .client-info .client-name {
    font-size: 12px;
    font-weight: 600;
}
.clients-list .client-info .client-company {
    font-size: 10px;
    color: #767676;
} */

.stats-section {
    background: #eee5ff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.stats-section h6 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stats-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin-bottom: 20px;
}

.stats-item {
    display: flex;
    align-items: center;
}

.line-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-line {
    width: 5px;
    height: 40px;
    background-color: #000; /* Default color, will be overridden by inline styles */
}

.text-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 10px;
}

.stats-number {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
}
.stats-heading .h5 {
    font-family: "Poppins";
    font-weight: 600;
    font-size: 24px;
    color: #11142d;
}
.stats-label {
    font-size: 12px;
}

.stats-chart {
    display: flex;
    justify-content: center;
}

.chart-container {
    width: 150px;
    height: 150px;
    position: relative;
}

/* Scrollbar container */
::-webkit-scrollbar {
    width: 8px; /* Width of the vertical scrollbar */
    height: 8px; /* Height of the horizontal scrollbar */
}

/* Scrollbar track */
::-webkit-scrollbar-track {
    background: #ffffff; /* Color of the track */
    border-radius: 10px;
}

/* Scrollbar thumb */
::-webkit-scrollbar-thumb {
    background-color: #6f42c1;
    border-radius: 10px;
    border: 3px solid #6f42c1;
}

/* Scrollbar thumb when hovered */
::-webkit-scrollbar-thumb:hover {
    background: #6f42c1;
}
/* notification page*/
.content-section-notification {
    padding: 20px;
}
.content-section-notification img {
    width: 30px;
    height: 30px;
}
.content-section-notification h2 {
    font-weight: 500;
    font-family: "Poppins";
    font-size: 30px;
    color: #11142d;
}
.notification-header h5 {
    font-size: 14px;
    font-weight: 500;
    color: #7a7a7a;
    margin-bottom: 10px;
    padding: 20px;
}

.notification-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}
.notification-item img {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
.content {
    flex-grow: 1;
}
.time {
    white-space: nowrap;
}
.notification-buttons {
    display: flex;
    align-items: center;
}
.notification-buttons .delete-btn {
    border-radius: 8px;
}
.notification-buttons .mark-read-btn {
    border-radius: 8px;
    background-color: #6f42c1;
    color: #ffffff;
}
.notification-buttons .mark-read-btn:hover {
    background-color: #ffffff;
    color: #183b56;
    border-color: #dcdcdc;
}

.notification-buttons img,
.notification-buttons button {
    margin-right: 10px;
}
.list-section {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
}

.btn-primary {
    background-color: #6f42c1;
    border-color: #6f42c1;
}
.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545;
}
/* end notification setting */
.notification-setting {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 20px;
}

.notification-setting .toggle-wrapper {
    display: flex;
    flex-direction: column;
}

.notification-setting .toggle-label {
    font-weight: bold;
    color: #2e3a59;
}

.notification-setting .toggle-description {
    color: #888;
    font-size: 12px;
}

.notification-item .content {
    flex-grow: 1;
}
.custom-control-input:checked ~ .custom-control-label::before {
    background-color: #6f42c1;
    border-color: #6f42c1;
}

/* ----------------start assigned task styling --------------------*/
.container-assigned-task {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
}

.logo-upload {
    background-color: #e6e5ff;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 20px;
    position: relative;
}

.logo-upload img {
    max-width: 100%;
    height: 50px;
    border-radius: 8px;
}

.logo-upload button {
    margin-top: 10px;
}

.assigned-task-btns {
    display: flex;
    justify-content: flex-end;
}
.assigned-task-btns .discard-btn {
    background-color: #ffffff !important;
    color: #11142d;
}
.assigned-task-btns button {
    margin-left: 10px;
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* ----------------end assigned task styling --------------------*/

/* ----------------start add-user styling --------------------*/
.input-group {
    position: relative;
}

.flag-select-container {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 10;
}

.flag-select-container img.flag {
    width: 24px;
    height: 24px;
    margin-right: 5px;
}

.flag-select-container select {
    border: none;
    background: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-left: 5px;
    padding-right: 20px;
    outline: none;
    font-size: 14px;
}

.flag-select-container img.dropdown-icon {
    width: 16px;
    height: 16px;
    position: absolute;
    right: 5px;
    pointer-events: none;
}

.input-group .form-control {
    padding-left: 70px; /* Adjust padding to accommodate the flag and select */
}

.input-group-prepend .custom-select {
    display: block;
    width: auto;
    margin: 0;
}
.add-user-btn .employee-btn {
    border-color: #d0e3ff !important;
    background-color: #eff4f8 !important;
    color: #11142d;
    border-radius: 8px;
}

.add-user-btn .employee-btn:hover {
    background-color: #6f42c1 !important;
    color: #ffffff;
}
.add-user-btn .client-btn {
    background-color: #6f42c1;
    border-radius: 8px;
    border-color: #d0e3ff !important;
    color: #ffffff;
}
.adduser-end-btns {
    display: flex;
    justify-content: flex-end;
    gap: 10px; /* Adjust the gap between buttons if needed */
}
.adduser-end-btns .discard-btn {
    color: #183b56;
    background-color: #ffffff;
    border-color: #dcdcdc;
    border-radius: 8px;
}

.adduser-end-btns .discard-btn:hover {
    background-color: #6f42c1 !important;
    color: #ffffff;
}

.adduser-end-btns .save-changes-btn {
    color: #ffffff;
    background-color: #6f42c1;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.adduser-end-btns .save-changes-btn:hover {
    background-color: #ffffff;
    color: #183b56;
    border-color: #dcdcdc;
}
.assigned-task-btns .discard-btn {
    border-radius: 8px;
    background-color: #ffffff;
    color: #183b56;
    border-color: #dcdcdc;
}
.assigned-task-btns .discard-btn:hover {
    border-radius: 8px;
    background-color: #6f42c1 !important;
    color: #ffffff;
}
.assigned-task-btns .assigned-btn {
    border-radius: 8px;
    background-color: #6f42c1;
    color: #ffffff;
    border-color: #dcdcdc;
}
.assigned-task-btns .assigned-btn:hover {
    border-radius: 8px;
    background-color: #ffffff;
    color: #183b56;
    border-color: #6f42c1;
}
/* Add User Page Styling */
.add-user-btn .employee-btn,
.add-user-btn .client-btn {
    border-radius: 8px;
    border: 1px solid #6f42c1;
    color: #6f42c1;
    background-color: #ffffff;
}

.add-user-btn .employee-btn.active,
.add-user-btn .client-btn.active {
    background-color: #6f42c1 !important;
    color: #ffffff;
}

.add-user-btn .employee-btn:hover,
.add-user-btn .client-btn:hover {
    background-color: #6f42c1;
    color: #ffffff;
}
/* end add-user page styling */

/*start media page styling */
.nav-underline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    list-style-type: none;
}

.nav-links {
    display: flex;
}

.nav-tabs .nav-link.active {
    color: #183b56;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .nav-link {
    color: #183b56;
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    padding: 10px 15px;
}

.media-header {
    display: flex;
    gap: 10px;
}
.media-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 20px;
}

.media-item {
    width: 135px;
    height: 137px;
    background-color: #e2e2ea;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
}
.media-item img,
.media-item video {
    max-width: 100%;
    max-height: 100%;
}
.nofileadd {
    height: 50px;
    width: 50px;
}
.icon-button-media {
    background-color: #6f42c1;
    margin-top: 5px;
    border: none;
    height: 30px;
    width: 30px;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-button-media img {
    width: 30px;
    height: 30px;
    fill: white;
}

.media-header img {
    width: 40px;
    height: 40px;
    background-color: #6f42c1;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 8px;
}

/* SVG color white */
.media-header img.download {
    fill: white;
}

.media-header img.add {
    fill: white;
}

/* Project management */
.projectcontent {
    height: 100%;
    margin-right: 0px;
    overflow-y: auto;
    overflow-x: hidden;
}
.edit h5 {
    font-size: 20px;
    font-family: "Poppins";
    font-weight: 500;
    width: 100%;
}

/* edit page styling start */
.col-md-4 > div {
    margin-top: 20px;
}
.editright {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.calendar-icon {
    height: 20px;
    width: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.update button {
    border-radius: 8px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
}
.tags-box textarea {
    width: 100%;
    resize: none;
    overflow: hidden;
    height: auto;
    padding: 10px;
    border-radius: 8px;
    background: #ffffff;
    border: #eee5ff;
    box-sizing: border-box;
    padding-right: 40px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon input {
    width: 100%;
    padding-right: 30px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #eee5ff;
}

.input-with-icon .input-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.tags-box .input-with-icon .input-icon {
    top: 20px;
}
/* feedback page styling*/
.feedback-switch {
    display: flex;
    justify-content: end;
}
.feedback-btn {
    display: flex;
    justify-content: flex-end;
}
.btn.custom-btn {
    border-radius: 8px;
    font-family: "Poppins";
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}
.btn:hover {
    background-color: #6f42c1;
    color: #ffffff;
}
/*employee button styling*/
.employeeheading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.v-client {
    margin-left: 250px;
    font-weight: bold;
}
.v-employee {
    margin-left: 210px;
    font-weight: bold;
}
.commentbtn {
    margin-left: 20px;
}

/* General styles for the status dot */
.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
}

/* General styles for the status dot */
.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
}

/* Color for different statuses */
.status-posted .status-dot {
    background-color: #3fe13a    ; /* Color for Posted */

}

.status-approved .status-dot {
    background-color: #0b6be5; /* Color for Approved */
}

.status-scheduled .status-dot {
    background-color: #faf70a; /* Color for Scheduled */
}


.status-rejected .status-dot {
    background-color: #f10b0b; /* Color for Scheduled */
}

.status-draft .status-dot {
    background-color: #9f97a2; /* Color for Scheduled */
}

.status-undefined .status-dot {
    background-color: #000000; /* Color for Scheduled */
}

/*status approved*/

/* .status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
} */
/*
Color for Posted
.status-posted {
  background-color: #6f42c1;
}
*/
/*
Color for Approved
.status-approved {
  background-color: #ffa500;
}
*/

/*
* Color for Scheduled
.status-scheduled {
  background-color: #ff5252;
}*/

.morning-evening-button-text {
    font-size: 16px;
}
.calendar-date-text {
    font-size: 16px;
}

/* Ensure consistent width, padding, and border for phone input */
.intl-tel-input input,
.intl-tel-input .form-control {
    width: 100%;
    border: 1px solid #ced4da; /* Matches other input borders */
    border-radius: 8px; /* Same border-radius as other input fields */
    padding: 16px; /* Matches the padding of other inputs */
    box-sizing: border-box;
    font-size: 16px;
    height: 56px; /* Ensure uniform height */
}

/* Adjust the flag select container padding */
.intl-tel-input .flag-container {
    padding-left: 10px;
}

/* Optional: Adjust the country flag icon size */
.intl-tel-input .selected-flag {
    width: 60px; /* Ensure the flag container fits within input */
}

/* Remove any box shadow applied by the phone input plugin */
.intl-tel-input input[type="tel"] {
    box-shadow: none;
}

/* Optional: Adjust the flag dropdown icon to align it properly */
.intl-tel-input .iti-arrow {
    margin-left: 5px;
}

/* Ensures proper width of input group and alignment */
.input-group .form-control {
    padding-left: 70px; /* Adjust for flag container */
    padding-right: 40px; /* Align with email input */
    height: 56px; /* Same height as other input fields */
}

.rightside-content {
    overflow-x: auto; /* Enable horizontal scroll whenever content overflows */
    padding-right: 0; /* Prevent padding from affecting layout */
}

.calendar-section {
    min-width: 300px; /* Ensure the calendar has a minimum width */
    width: 100%; /* Allow the calendar to take full width of its container */
}

.calendar-days,
.calendar-time {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap; /* Prevent wrapping of content */
    overflow-x: auto; /* Enable horizontal scroll if the content exceeds container width */
}

.calendar-days button,
.calendar-time button {
    min-width: 50px; /* Adjust button size to avoid wrapping */
}

.calendar-time button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem; /* Adjust padding as needed */
    font-size: 1rem; /* Ensure font size scales down appropriately */
    white-space: nowrap; /* Prevent text from wrapping */
    text-overflow: ellipsis; /* Add ellipsis for overflow */
    overflow: hidden; /* Hide overflow content */
}

@media (max-width: 576px) {
    .calendar-time button {
        font-size: 0.9rem; /* Slightly reduce font size on smaller screens */
        padding: 0.4rem 0.8rem; /* Adjust padding for smaller screens */
    }
}

/* For Right Side to take full width */
.rightside-content {
    width: 100%; /* Ensure the sidebar takes the full available width */
    max-width: 100%; /* Prevent the sidebar from exceeding the screen width */
    padding: 1rem; /* Adjust padding if needed */
}

@media (min-width: 768px) {
    .rightside-content {
        width: auto; /* Revert to normal width on larger screens */
    }
}
.container-fluid {
    width: 100%; /* Ensure full width */
    margin: 0; /* Remove any margins that may be restricting width */
    padding: 0; /* Remove any padding that could restrict the layout */
}
