* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    display: flex;
    min-height: 100vh;
    color: #333;
}

.sidebar {
    width: 250px;
    background-color: #fff;
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 91vh;
    padding: 20px 10px;
    position: relative;
    overflow: auto;
}

.sidebar-menu {
    /* position: fixed; */
}

.sidebar h1 {
    font-size: 24px;
    margin-bottom: 20px;
    padding-left: 10px;
    color: #282936;
    font-weight: 800 !important;
}

.sidebar-section {
    background-color: #f6f6f6;
    border-radius: 12px;
    padding: 10px 10px !important;
    margin-bottom: 10px;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;

}
.clear-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    font-size: 16px;
    cursor: pointer;
    color: #888;
    display: none; /* hidden by default */
}
.clear-btn:hover {
    color: #333;
}

.sidebar-section i {
    margin-right: 10px;
    color: #282936;
}

.sidebar-footer {
    /* display: flex;   */
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px;
    /* padding-top: 100px; */
    background-color: white;
    position: fixed;
    bottom: 0;
}

.sidebar-footer button {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background-color: #1e1e2d;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.bookmark {
    background: #F5F5F5 !important;
    color: #000 !important;
}

.bookmark_1 {
    background: white !important;
    color: #000 !important;
}

.search-footer {
    width: 43px;
    height: 43px;
}

.content {
    flex: 1;
    overflow: auto;
}

/* Dummy content placeholder */
.dummy {
    padding: 20px;
}

.main-content {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f8f5ee;
    overflow-y: auto;
    overflow-x: hidden;
}

.top-bar {
    background: linear-gradient(to right, #b76efb, #ffa26b);
    color: white;
    padding: 8px 16px;
    font-size: 14px;
    white-space: nowrap;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
    background-color: #f8f5ee;

}

.navbar-links {
    display: flex;
    gap: 20px;
    background-color: #FFFFFF;
    border-radius: 5px;
    padding: 10px 13px;
}

.navbar-links a {
    text-decoration: none;
    color: #606060;
    font-weight: 400;
    font-size: 12px;
}

.search-bar {
    flex: 1;
    text-align: right;
    margin-right: 5px;
    width: 400px;

}

.search-bar input {
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid #EEEEEE;
    background-color: #FFFFFF;
    height: 40px;
}

.navbar-buttons {
    display: flex;
    gap: 10px;
}

.navbar-buttons button {
    border: none;
    padding: 10px 12px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-signin {
    background: #282936;
    border: 1px solid #ccc;
    color: white;
    font-weight: 600;
}

.btn-trial {
    background: #5367FF;
    color: #fff;
    width: 190px;
    text-align: center;
}

.btn-trial i {
    margin-right: 10px;
}

.filters {
    display: flex;
    padding: 20px;
    gap: 20px;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
}

.filter-card {
    flex: 1;
    min-width: 200px;
    background: #fdfdfd;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
}

.filter-bars {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
}

.bar {
    width: 12px;
    border-radius: 6px;
}

.bar1 {
    height: 40px;
    background: #000;
}

.bar2 {
    height: 30px;
    background: #6b5b95;
}

.bar3 {
    height: 50px;
    background: #12a8a4;
}

.bar4 {
    height: 25px;
    background: #ec7c26;
}

.bar5 {
    height: 20px;
    background: #f95738;
}

.filter-labels {
    font-size: 12px;
    text-align: left;
}

.summary {
    padding: 15px 8px;
    background-color: #f8f5ee;
    ;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    margin: 0px 20px;
}

.summary-counts span {
    margin-right: 15px;
    font-weight: 500;
    padding: 10px;
    background-color: white;
    border-radius: 5px;
}

.summary-actions button {
    margin-left: 10px;
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    background: #000;
    color: #fff;
    cursor: pointer;
}

.data-table {
    background-color: #fff;
    margin: 0 20px 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background-color: #fafafa;
}

th,
td {
    padding: 12px 10px;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 12px !important;
}

td img {
    border-radius: 50%;
    margin-right: 8px;
}

.contact-icons i {
    margin-right: 8px;
    cursor: pointer;
}

.text-bold {
    font-size: 12px;
    font-weight: 600;
}

.ellipsis {
    text-align: right;
}

.fa-chevron-down {
    width: 8.6px;
    height: 5px;
}

.down {
    width: 5px !important;
}

.sidebar-section {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-weight: bold;
}

.submenu {
    display: none;
    /* padding-left: 20px; */
    margin-top: 17px;
    font-size: 14px;
}

.submenu label {
    line-height: 27px;
}

.sidebar-section.open .submenu {
    display: block;
}

.sidebar-section .toggle-icon {
    transition: transform 0.3s ease;
}

.sidebar-section.open .toggle-icon {
    transform: rotate(180deg);
    margin-top: 10px;
}

.collapsed {
    display: none;
}

.cards-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.dashboard-card {
    background: #fdfbf6;
    border-radius: 12px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
    font-size: 13px;
    color: #333;
    width: 200px;
}

.card-header {
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.dashboard-card-header {
    background: #FAF9F2;
    padding: 10px;
    border-radius: 20px;


}

.bar-chart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 80px;
    margin-bottom: 12px;
    padding: 16px;

}

.bar {
    width: 16px;
    background: #ccc;
    border-radius: 4px 4px 0 0;
    position: relative;
    cursor: pointer;
}

.bar1 {
    height: 70%;
    background: #5b6b9a;
}

.bar2 {
    height: 50%;
    background: #3e3f49;
}

.bar3 {
    height: 30%;
    background: #3b60f5;
}

.bar4 {
    height: 25%;
    background: #d5594f;
}

.bar5 {
    height: 80%;
    background: #f58f53;
}

.bar:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
}

.bar-labels,
.bar-values {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bar-labels div,
.bar-values div {
    display: flex;
    justify-content: space-between;
}

.bar-values {
    font-weight: bold;
    text-align: right;
    margin-top: 8px;
}

.card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.card-header {
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.bar-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 12px;
    padding: 0 4px;
    border-radius: 20px;
}

.bar {
    width: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 120px;
    position: relative;
    background: repeating-linear-gradient(45deg,
            #eeeeee,
            #eeeeee 5px,
            transparent 5px,
            transparent 10px);
}

.bar-fill {
    width: 100%;
    border-radius: 8px 8px 0 0;
}

.bar-label {
    font-size: 12px;
    color: #999;
    margin-top: 6px;
}


.bar-1 {
    height: 50%;
    background: #5B6B9A;
}

.bar-2 {
    height: 40%;
    background: #1E1E1E;
}

.bar-3 {
    height: 25%;
    background: #3B60F5;
}

.bar-4 {
    height: 20%;
    background: #F38B83;
}

.bar-5 {
    height: 60%;
    background: #F58F53;
}

.bar-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 8px;
    font-size: 12px;
    color: #888;
    margin-bottom: 14px;
}

.data-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}

.data-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.percentage-badge {
    background: #f3f3f3;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 13px;
}