:root {
    --bg-body: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border-color: #e2e8f0;

    --metric-blue: #2563eb;
    --metric-purple: #9333ea;
    --metric-green: #16a34a;
    --metric-orange: #ea580c;
    --metric-pink: #db2777;
    --metric-gold: #eab308;
}

body {
    font-family: sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    font-size: 0.85rem;
}

main {
    margin: 0 20px;
}

.analy-dashboard-container {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px;
    margin-top: 100px;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

.analy-dashboard-container:hover {
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

.analytics-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 8px 10px !important;
    height: 100%;
    color: #1e293b;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.analytics-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    border-color: #3b82f6;
}

.card-header-live {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.activity-title,
.survey-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #001248;
}

.badge-live {
    background-color: #f0fdf4;
    color: #16a34a;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid #bbf7d0;
}

.live-indicator-dot {
    width: 5px;
    height: 5px;
    background-color: #16a34a;
    border-radius: 50%;
    display: inline-block;
}

.border-end-slate {
    border-right: 1px solid #f1f5f9;
}

.divider-slate {
    border-top: 1px solid #f1f5f9;
    margin: 16px 0;
}

.analytics-stat-label {
    color: #001248;
    font-size: 0.72rem;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.stat-value {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

.text-dark-slate {
    color: #0f172a;
}

.text-purple {
    color: #a855f7;
}

.text-green {
    color: #22c55e;
}

.text-orange {
    color: #f97316;
}

.text-blue {
    color: #3b82f6;
}

/* Table System */
.table-activity {
    vertical-align: middle;
    font-size: 0.8rem;
}

.table-header-row {
    font-size: 0.68rem;
    color: #64748b;
    border-bottom: 2px solid #f1f5f9;
}

.table-header-row th {
    padding: 6px 4px;
    font-weight: 600;
}

.table-border-row {
    border-bottom: 1px solid #f8fafc;
}

.table-activity td {
    padding: 8px 4px;
}

.text-details {
    color: #334155;
}

.text-subtext {
    font-size: 0.65rem;
    font-weight: 400;
    color: #64748b;
}

.text-time {
    font-family: var(--bs-font-monospace);
    color: #212529;
    font-size: 0.75rem;
}

.badge-points {
    font-size: 0.65rem;
    padding: 2px 6px;
    border: 1px solid #bbf7d0;
}

.card-header-title {
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin-bottom: 15px; */
    color: #001248;
}

.card-header-title span i {
    font-size: 0.8rem;
    color: var(--text-muted);
    cursor: pointer;
    margin-left: 4px;
}

.active-status {
    background-color: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
}

/* KPI Display Elements */
.kpi-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.kpi-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.dash-title {
    color: #001248 !important;
    font-weight: 600;
}

#map {
    height: 50px !important;
    width: 50px !important;
}

/* Pure CSS Funnel Component */
.funnel-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 10px;
}

.funnel-tier {
    text-align: center;
    color: white;
    font-weight: 500;
    font-size: 0.72rem;
    padding: 6px 4px;
    margin: 0 auto;
}

.tier-1 {
    width: 100%;
    background: #3b82f6;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 8% 100%);
}

.tier-2 {
    width: 84%;
    background: #a855f7;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

.tier-3 {
    width: 68%;
    background: #f97316;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 12% 100%);
}

.tier-4 {
    width: 52%;
    background: #22c55e;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    border-radius: 0 0 4px 4px;
}

.social-matrix-item {
    background-color: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 6px;
    text-align: center;
}

.geographic-map-vector {
    background-color: #edf2f7;
    height: 180px;
    border-radius: 8px;
    position: relative;
    border: 1px solid #cbd5e1;
    overflow: hidden;
}

.map-interactive-tooltip {
    position: absolute;
    background: #0f172a;
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    top: 40%;
    left: 25%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dense-table th,
.dense-table td {
    padding: 5px 8px !important;
    font-size: 0.8rem;
}

/* Interactive tab styling */
.demographics-btn.active {
    background-color: #c6dafd !important;
    box-shadow: 0 2px 4px rgba(165, 196, 250);
    font-weight: 600;
    color: #1f38f2 !important;
}

.btn {
    --bs-btn-color: #615c5c !important;
}

.progress {
    height: 12px !important;
    border-radius: 4px;
}

.analytics-header-container {
    padding: 1rem;
    border-radius: 0.5rem;
}

.analytics-header-title {
    letter-spacing: -0.5px;
    color: #001248;
}

.campaign-selector {
    width: auto;
    background-color: #f1f5f9;
}

.status-indicator-dot {
    font-size: 0.6rem;
}

.profile-avatar {
    width: 32px;
    height: 32px;
    object-fit: cover;
}

.profile-name-text {
    font-size: 0.8rem;
}

.profile-role-text {
    font-size: 0.7rem;
}

/* KPI Cards & Badges */
.kpi-purple {
    background-color: var(--metric-purple);
}

.kpi-pink {
    background-color: var(--metric-pink);
}

.kpi-gold {
    background-color: var(--metric-gold);
}

.kpi-trend-badge {
    font-size: 0.7rem;
}

.kpi-comparison-text {
    font-size: 9px;
}

/* Card Headers & Metadata */
.card-header-flex {
    color: #001248;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-header-info-icon {
    font-size: 0.8rem;
    color: #64748b;
}

.card-subheader-muted {
    font-size: 9px;
}

.funnel-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.funnel-step {
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 11px;
    padding: 6px 2px;
    margin: 0 auto;
}

.funnel-tier-1 {
    width: 100%;
    background: #3b82f6;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 8% 100%);
}

.funnel-tier-2 {
    width: 84%;
    background: #a855f7;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

.funnel-tier-3 {
    width: 68%;
    background: #f97316;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 12% 100%);
}

.funnel-tier-4 {
    width: 52%;
    background: #22c55e;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    border-radius: 0 0 4px 4px;
}

/* Funnel Metrics */
.metric-label-small {
    font-size: 12px;
    font-weight: 500;
}

.metric-value-large {
    font-size: 1.4rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.metric-ring-wrapper {
    width: 75px;
    height: 75px;
}

.metric-value-medium {
    font-size: 1.1rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

/* Sharing & Social Component */
.social-donut-wrapper {
    width: 120px;
    height: 120px;
}

.social-donut-icon {
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.social-donut-icon i {
    font-size: 1.4rem;
}

.social-shares-counter {
    font-size: 1.5rem;
    line-height: 1.1;
}

.social-shares-label {
    font-size: 12px;
    font-weight: bold;
    line-height: 1.2;
    color: #001248 !important;
}

.points-badge-box {
    background-color: #ffffff;
    min-height: 74px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.points-label-small {
    font-size: 10px;
    color: #001248 !important;
    font-weight: 600 !important;
}

.points-value-medium {
    font-size: 1.25rem;
    line-height: 1;
}

.points-subtext {
    font-size: 11px;
    color: #001248;
    font-weight: bold;
}

.social-platforms-title {
    font-size: 15px;
    color: #001248;
    text-align: center;
    font-weight: 600;
}

.platform-col {
    flex: 1;
}

.platform-col a {
    text-decoration: none;
}

.platform-icon-fb {
    font-size: 1.3rem;
}

.platform-icon-ig {
    font-size: 1.3rem;
    color: #e1306c;
}

.platform-icon-wa {
    font-size: 1.3rem;
}

.platform-icon-x {
    font-size: 1.3rem;
}

.platform-icon-tk {
    font-size: 1.3rem;
}

.platform-count-text {
    font-size: 0.75rem;
    text-decoration: none;
}

.social-footer-bar {
    background-color: #f1f5f9;
    font-size: 13px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    text-align: center;
    display: flex;
    color: #000;
    border-radius: 5px;
    padding: 3px 5px;
}

/* Giveaway Module */
.giveaway-card-custom {
    padding: 10px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    height: 100%;
}

.giveaway-header-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #001248;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.giveaway-info-icon {
    font-size: 0.85rem;
    color: #94a3b8;
}

.giveaway-metrics-hero {
    background-color: #f5faf7;
}

.giveaway-hero-icon {
    font-size: 1.35rem;
    line-height: 1.1;
}

.giveaway-hero-label {
    color: #001248;
    font-size: 13px;
    display: block;
    margin-bottom: 0px;
    font-weight: 500;
}

.giveaway-prize-value {
    color: #059669;
    font-weight: 700;
    font-size: 11px;
}

.giveaway-winners-value {
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
}

.giveaway-donut-wrapper {
    width: 120px;
    height: 120px;
}

.giveaway-table-wrapper {
    margin-top: 32px;
}

.giveaway-table {
    font-size: 0.9rem;
    width: 100%;
}

.giveaway-td-label {
    padding: 6px 0;
    color: #001248;
    font-weight: 500;
}

.giveaway-td-value {
    padding: 6px 0;
    text-align: right;
    font-weight: 700;
    color: #0f172a;
}

.giveaway-total-row {
    border-top: 1px solid #e2e8f0;
}

.giveaway-td-total-label {
    padding: 12px 0 0 0;
    color: #0f172a;
    font-weight: 700;
}

.giveaway-td-total-value {
    padding: 12px 0 0 0;
    text-align: right;
    font-weight: 700;
    color: #059669;
    font-size: 1rem;
}

/* Demographics & Peripheral Panels */
.demographics-tabs-group {
    font-size: 0.75rem;
}

.time-panel-average-label {
    font-size: 0.7rem;
}

.time-panel-stats-list {
    font-size: 0.75rem;
}

.time-panel-total-box {
    font-size: 0.65rem;
}

.geo-map-overlay-container {
    font-size: 0.75rem;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.12) 20%, rgba(241, 245, 249, 1) 80%);
}

.device-legend-container {
    font-size: 15px;
}

.os-breakdown-title {
    font-size: 13px;
}

.os-breakdown-label {
    font-size: 13px;
}

.referrals-list-container {
    font-size: 0.75rem;
}

.campaign-selector {
    min-width: 260px;
    padding-right: 2rem !important;
}

#map {
    width: 100% !important;
    height: 500px !important;
}

/* voters analytics */

.dashboard-title-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f2f5;
    padding-bottom: 15px;
}

.dashboard-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.chart-box {
    min-height: 220px;
}

/* Static KPI Cards for Sentiment Breakdown */
.kpi-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.kpi-card {
    flex: 1;
    border-radius: 8px;
    text-align: center;
    padding: 15px 10px;
    max-width: 100px;
}

.kpi-positive {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
}

.kpi-neutral {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
}

.kpi-negative {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}

.kpi-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.kpi-label {
    font-size: 11px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.kpi-value {
    font-size: 18px;
    font-weight: 700;
}

.divider-left {
    border-left: 1px solid #f0f2f5;
}

.card-trend {
    padding: 24px;
    height: 100%;
}

.card-sentiment {
    border: 0 !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border-radius: 0.5rem;
    padding: 1.5rem;
    background-color: #ffffff;
    margin-top: 15px;
}

.trend-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
}

.sentiment-section-title {
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
}

.info-icon {
    font-size: 0.875rem;
    color: #64748b;
    cursor: pointer;
}

.trend-legend {
    font-size: 0.75rem;
    font-weight: 600;
}

.legend-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 4px;
}

.bg-views {
    background: #3b82f6;
}

.bg-engaged {
    background: #a855f7;
}

.bg-completed {
    background: #22c55e;
}

.bg-shared {
    background: #f97316;
}

.select-trend {
    width: auto;
    font-size: 0.78rem;
    font-weight: 500;
    background-color: #f8fafc;
    border-color: #e2e8f0;
    border-radius: 6px;
    min-width: 130px;
}

.select-sentiment {
    width: 140px;
    font-size: 0.8rem;
    border-color: var(--bs-border-color-translucent);
}

.chart-container-trend {
    width: 100%;
    height: 250px;
}

.chart-container-voter {
    height: 240px;
    width: 100%;
}

.kpi-card {
    border-radius: 0.5rem;
    flex-grow: 1;
    border: 1px solid;
    max-width: 85px;
    padding: 6px 0;
}

.kpi-label {
    font-weight: 600;
    color: #64748b;
    font-size: 0.7rem;
}

.kpi-value {
    font-weight: 700;
    font-size: 1.1rem;
}

.kpi-positive {
    background-color: #f0fdf4;
    border-color: #bbf7d0 !important;
}

.kpi-neutral {
    background-color: #f8fafc;
    border-color: #e2e8f0 !important;
}

.kpi-negative {
    background-color: #fef2f2;
    border-color: #fecaca !important;
}

.text-green-dark {
    color: #15803d;
}

.text-slate-dark {
    color: #475569;
}

.text-red-dark {
    color: #b91c1c;
}

.click-cursor {
    cursor: pointer;
}

.points-badge-box .points-value-medium {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.demographics-tabs-group {
    padding: 0.25rem !important;
}

/* --- Global Extensions & Header Elements --- */
.header-title-text {
    font-size: 0.95rem;
}

.header-info-icon {
    font-size: 0.85rem;
    cursor: pointer;
}

.interactive-info-icon {
    cursor: pointer;
}

.survey-time-sidebar {
    border-right: 1px solid #dee2e6;
    padding-right: 1rem;
}

.progress-ring-wrapper {
    width: 120px;
    height: 120px;
}

.progress-ring-svg {
    transform: rotate(-90deg);
    filter: drop-shadow(0px 4px 8px rgba(0, 123, 255, 0.15));
}

.progress-ring-bg {
    stroke: #e6f0ff;
}

.progress-ring-fill {
    stroke: #007bff;
}

.progress-ring-content {
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.progress-time-display {
    font-size: 1.35rem;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.progress-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.progress-ring-ticks {
    pointer-events: none;
    opacity: 0.6;
}

.tick-mark {
    position: absolute;
    background: #007bff;
}

.tick-top {
    width: 2px;
    height: 6px;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
}

.tick-right {
    width: 6px;
    height: 2px;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.tick-bottom {
    width: 2px;
    height: 6px;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
}

.tick-left {
    width: 6px;
    height: 2px;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.stats-metrics-list {
    font-size: 0.75rem;
}

.metric-icon-box {
    width: 32px;
    height: 32px;
}

.icon-box-gray {
    background-color: #f1f5f9;
    color: #475569;
}

.icon-box-green {
    background-color: #eafaf1;
    color: #1a7f37;
}

.icon-box-red {
    background-color: #ffebe9;
    color: #cf222e;
}

.metric-label {
    font-size: 0.65rem;
    line-height: 1.2;
}

.metric-value {
    font-size: 0.85rem;
}

.total-time-icon-box {
    width: 34px;
    height: 34px;
    background-color: #f1f5f9;
    color: #334155;
}

.total-time-label {
    font-size: 0.65rem;
    line-height: 1.2;
}

.total-time-value {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.2px;
}

.total-time-format {
    font-size: 0.55rem;
    opacity: 0.7;
    font-weight: 600;
}

.geographic-map-card {
    padding: 24px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    height: 100%;
}

.map-info-icon {
    font-size: 0.85rem;
    color: #94a3b8;
    cursor: pointer;
}

.map-viewport {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f8fafc;
    border: 1px solid #f1f5f9;
}

.map-interactive-tooltip {
    display: none;
    top: 15px;
    left: 15px;
    z-index: 10;
    background: rgba(15, 23, 42, 0.95);
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.78rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    line-height: 1.45;
}

.tooltip-state-title {
    font-size: 0.85rem;
    color: #3b82f6;
    display: block;
    margin-bottom: 2px;
}

.tooltip-row {
    display: block;
    opacity: 0.9;
}

.tooltip-label {
    color: #cbd5e1;
}

.device-donut-chart {
    width: 100%;
    height: 110px;
}

.device-legend-list {
    font-size: 13px;
}

.os-breakdown-title {
    font-size: 13px;
}

.os-label {
    font-size: 13px;
}

.os-icon-android {
    color: #86b00f;
}

.os-icon-windows {
    color: #2c86bf;
}

.referrals-list {
    font-size: 0.75rem;
}

.referral-name {
    width: 85px;
    color: #000;
}

.referral-progress-container {
    height: 8px;
}

.referral-percentage {
    width: 45px;
}

.referral-bar-w45 {
    width: 45.2%;
}

.referral-bar-w24 {
    width: 24.6%;
}

.referral-bar-w16 {
    width: 16.1%;
}

.referral-bar-w8 {
    width: 8.3%;
}

@media (max-width: 992px) {
    .divider-left {
        border-left: none;
        border-top: 1px solid #f0f2f5;
        padding-top: 15px;
    }
}

/* org dropdown css start */

.custom-dropdown {
    position: relative;
    width: 100%;
    font-family: inherit;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #e6e9ef;
    border-radius: 12px;
    padding: 10px 14px;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    /* --- Fix for Button Height --- */
    min-height: 48px;
    /* Allows button to grow dynamically for 2 lines */
    height: auto;
}

.dropdown-btn:hover {
    border-color: #4f46e5;
}

.selected-item {
    display: flex;
    align-items: center;
    gap: 12px;
    /* --- Fix for Flex Child Wrapping --- */
    min-width: 0;
    /* Allows flex item to shrink properly */
    flex: 1;
    /* Occupies available space before the arrow */
}

.selected-item img,
.dropdown-item img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    /* Prevents image from squishing when text wraps */
}

.selected-item span,
.dropdown-item span {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    /* --- Fix for Text Wrapping --- */
    white-space: normal;
    /* Allows text to break into multiple lines */
    word-break: break-word;
    line-height: 1.35;
}

.arrow {
    transition: .3s;
    font-size: 13px;
    color: #666;
    flex-shrink: 0;
    /* Keeps arrow locked to the right side */
    margin-left: 10px;
}

.custom-dropdown.active .arrow {
    transform: rotate(180deg);
}

.dropdown-list {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #ececec;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .12);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: .25s;
    z-index: 1000;
    overflow: hidden;
    max-height: 200px;
}

.custom-dropdown.active .dropdown-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: .25s;
    /* --- Fix for List Item Height --- */
    height: auto;
}

.dropdown-item:hover {
    background: #f5f7fb;
}

.dropdown-item.active {
    background: #eef2ff;
}

.dropdown-item+.dropdown-item {
    border-top: 1px solid #f2f2f2;
}

/* org dropdown css end */

.nav-link {
    font-family: "Poppins", sans-serif;
}