.navbar-menu .navbar-nav .nav-link svg {
    /* background: #007bff; */
    /* color: #1f2937; */
    border-radius: 3.2px;
    width: 18px;
    height: 18px;
    padding: 0px;
    box-sizing: border-box;
    /* fill: #ffffff; */
}

[data-layout="horizontal"] .navbar-menu .navbar-nav .nav-link {
    font-weight: 600;
    /* color: #1f2937; */
}

[data-layout="horizontal"] .navbar-menu .navbar-nav .nav-link span {
    /* color: #1f2937; */
}

.navbar-menu .navbar-nav .nav-link:hover svg {
    color: #2563eb;
}

[data-layout="horizontal"] .navbar-menu .navbar-nav .nav-link:hover span {
    color: #2563eb;
}

[data-layout="horizontal"] .navbar-menu .navbar-nav .nav-link:hover {
    color: #2563eb;
}

[data-layout="horizontal"] .dashed-underline {
    border-bottom: 1px dashed #2563eb;
    /* dashed underline: 1px thick, dashed, blue */
    cursor: pointer;
}


/* KPI Row */
.kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width: 1000px) {
    .kpis {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .kpis {
        grid-template-columns: 1fr;
    }
}

.kpis .card {
    /* background: #ffffff;
    border: 1px solid #e5e7eb; */
    border-radius: 4px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.kpi {
    position: relative;
    overflow: hidden;
    color: #fff;
    display: grid;
    gap: 6px;
    min-height: 110px;
}

.kpi .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kpi .title {
    font-size: 13px;
    opacity: .9;
}

.kpi .value {
    font-size: 26px;
    font-weight: 800;
}

.kpi .delta {
    font-size: 12px;
    opacity: .95;
}

.kpi i,
.kpi svg {
    opacity: .95;
}

.kpi.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: none;
}

.kpi.green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: none;
}

.kpi.orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
}

.kpi.red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border: none;
}

/* Full width sections */
.full {
    grid-column: 1 / -1;
    /* background: #ffffff; */
    /* border: 1px solid #e5e7eb; */
    border-radius: 4px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.card-header.event_header {
    border-bottom: 0;
    padding: 5px 0;
    box-sizing: border-box;
}

.card-header.event_header h3 {
    margin: 0;
    font-weight: 600;
}

.section-title {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 800;
    color: #111827;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.status-live {
    color: #065f46;
    background: #d1fae5;
}

.status-planned {
    color: #92400e;
    background: #ffedd5;
}

.status-completed {
    color: #0f172a;
    background: #e2e8f0;
}

.status-risk {
    color: #7c2d12;
    background: #fde68a;
}

.status-overdue {
    color: #7f1d1d;
    background: #fee2e2;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 1000px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

.pill-btn {
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
    font-size: 12px;
    color: var(--text);
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.pill-btn:hover {
    border-color: #bfdbfe;
    color: var(--primary);
    background: #eff6ff;
}

.select2-container--default .select2-selection--single {
    border: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    background-color: var(--vz-input-bg);
    color: var(--vz-body-color);
    border: 1px solid var(--vz-input-border);
    font-size: 0.7109375rem;
    border-radius: 0.2rem;
}

.select2-results__option {
    background-color: var(--vz-choices-bg);
    border-radius: 5px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

[data-layout-mode="dark"] .bg-dark {
    color: var(--vz-light);
    ;
}

.card_list {
    display: flex;
    justify-content: space-between;
}

.card_list h5 {
    color: #ffffff;
    background: #000000;
    border-radius: 100%;
    padding: 3px 5px;
    box-sizing: border-box;
    font-size: 12px;

}

.card.check-card{
    box-shadow: none;
}

.card.check-card .card-body{
    padding: 0;
}