.df-page-heading {
    width: 100%;
}

.df-heading-content {
    width: 100%;
    min-width: 0;
}

/* Page title / breadcrumb / server selector header */
.df-breadcrumb-filter-row {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(460px, 0.9fr);
    align-items: center;
    gap: 1rem;
    width: 100%;
    margin-top: 0.35rem;
    min-width: 0;
}

.df-breadcrumb-filter-row .df-breadcrumb {
    min-width: 0;
    flex-wrap: nowrap;
}

.df-breadcrumb-filter-row .df-breadcrumb span {
    white-space: nowrap;
}

.df-breadcrumb-filter-row .df-breadcrumb span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
}


/* =========================================================
   SERVER OVERVIEW - Progressive loading, expiration and dialogs
========================================================= */

.df-server-action-stack {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    min-width: 0;
    width: 100%;
}

.df-server-action-stack .df-server-filter-inline {
    width: 100%;
    max-width: 680px;
    flex: 1 1 420px;
}

.df-load-progress {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 34px;
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    border: 1px solid var(--df-border);
    background: rgba(148, 163, 184, 0.08);
    color: var(--df-muted);
    font-size: 0.78rem;
    font-weight: 850;
    white-space: nowrap;
}

.df-load-progress .rz-icon {
    font-size: 17px;
}

.df-load-progress.success {
    color: var(--df-success);
    background: rgba(34, 197, 94, 0.10);
    border-color: rgba(34, 197, 94, 0.22);
}

.df-load-progress.warning {
    color: var(--df-amber);
    background: rgba(245, 158, 11, 0.10);
    border-color: rgba(245, 158, 11, 0.22);
}

.df-load-progress.loading .rz-icon {
    animation: df-spin 1.15s linear infinite;
}

@keyframes df-spin {
    to { transform: rotate(360deg); }
}

.df-grid-1 {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    margin-top: 18px;
    margin-bottom: 18px;
}


.df-empty-state {
    min-height: 110px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 0.45rem;
    color: var(--df-muted);
    text-align: center;
    border: 1px dashed var(--df-border);
    border-radius: 16px;
    background: rgba(148, 163, 184, 0.05);
    font-weight: 750;
}

.df-empty-state.chart {
    min-height: 320px;
}

.df-empty-state .rz-icon {
    font-size: 28px;
    color: var(--df-primary);
}

.df-expiration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

.df-expiration-card {
    border: 1px solid var(--df-border);
    border-radius: 18px;
    padding: 14px;
    background: rgba(148, 163, 184, 0.055);
    min-width: 0;
}

.df-expiration-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.df-expiration-card-top > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.df-expiration-card-top strong {
    color: var(--df-text);
    font-size: 0.96rem;
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.df-expiration-card-top span:not(.df-expiration-badge) {
    color: var(--df-muted);
    font-size: 0.78rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.df-expiration-badge {
    flex: 0 0 auto;
    padding: 0.24rem 0.55rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 950;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid transparent;
}

.df-expiration-badge.success {
    color: var(--df-success);
    background: rgba(34, 197, 94, 0.11);
    border-color: rgba(34, 197, 94, 0.24);
}

.df-expiration-badge.warning {
    color: var(--df-amber);
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.26);
}

.df-expiration-badge.danger {
    color: var(--df-red);
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.26);
}

.df-expiration-badge.muted {
    color: var(--df-muted);
    background: rgba(148, 163, 184, 0.10);
    border-color: var(--df-border);
}

.df-expiration-main {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.df-expiration-main > div {
    min-width: 0;
    padding: 10px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.16);
    border: 1px solid rgba(148, 163, 184, 0.08);
}

html[data-df-theme="light"] .df-expiration-main > div,
html.df-theme-light .df-expiration-main > div {
    background: rgba(15, 23, 42, 0.035);
}

.df-expiration-main span {
    display: block;
    color: var(--df-muted);
    font-size: 0.72rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.df-expiration-main strong {
    color: var(--df-text);
    font-size: 0.86rem;
    font-weight: 950;
}

.df-expiration-error {
    margin-top: 12px;
    padding: 10px;
    border-radius: 14px;
    color: var(--df-red);
    background: rgba(239, 68, 68, 0.10);
    border: 1px solid rgba(239, 68, 68, 0.22);
    font-size: 0.78rem;
    font-weight: 750;
}

.df-license-dialog {
    color: var(--df-text);
    display: grid;
    gap: 16px;
}

.df-license-dialog.small {
    gap: 8px;
}

.df-license-dialog p {
    margin: 0;
    color: var(--df-muted);
    line-height: 1.6;
}

.df-license-dialog h4 {
    margin: 2px 0 -6px;
    font-size: 0.96rem;
    font-weight: 900;
    color: var(--df-text);
}

.df-license-dialog-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.df-license-dialog-summary > div,
.df-license-dialog-expiration-card {
    border-radius: 16px;
    padding: 12px;
    background: rgba(148, 163, 184, 0.08);
    border: 1px solid var(--df-border);
}

.df-license-dialog-summary span,
.df-license-dialog-expiration-card span {
    display: block;
    color: var(--df-muted);
    font-size: 0.74rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.df-license-dialog-summary strong,
.df-license-dialog-expiration-card strong {
    display: block;
    color: var(--df-text);
    font-size: 1.05rem;
    font-weight: 950;
}

.df-license-dialog-expirations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 10px;
}

.df-license-dialog-expiration-card em {
    display: block;
    margin-top: 5px;
    font-style: normal;
    font-size: 0.76rem;
    font-weight: 850;
}

.df-license-dialog-table-wrap {
    /*max-height: 330px;*/
    overflow: auto;
    border-radius: 16px;
    border: 1px solid var(--df-border);
}

.df-license-dialog-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 840px;
    background: rgba(148, 163, 184, 0.035);
}

.df-license-dialog-table th,
.df-license-dialog-table td {
    padding: 11px 12px;
    border-bottom: 1px solid var(--df-line);
    text-align: left;
    font-size: 0.82rem;
    white-space: nowrap;
}

.df-license-dialog-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: var(--df-card-strong);
    color: var(--df-muted);
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.68rem;
}

.df-license-dialog-table td {
    color: var(--df-text);
    font-weight: 700;
}

.df-license-dialog-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.52rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 950;
}

.df-license-dialog-pill.success {
    color: var(--df-success);
    background: rgba(34, 197, 94, 0.10);
}

.df-license-dialog-pill.warning {
    color: var(--df-amber);
    background: rgba(245, 158, 11, 0.12);
}

.df-object-usage-list {
    display: grid;
    gap: 12px;
}

.df-object-usage-row {
    border: 1px solid var(--df-border);
    border-radius: 16px;
    padding: 12px;
    background: rgba(148, 163, 184, 0.06);
}

.df-object-usage-row-head,
.df-object-usage-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.df-object-usage-row-head strong {
    color: var(--df-text);
    font-size: 0.88rem;
    font-weight: 900;
}

.df-object-usage-row-head span {
    color: var(--df-primary);
    font-weight: 950;
}

.df-object-usage-bar {
    height: 9px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.16);
    margin: 10px 0;
}

.df-object-usage-bar span {
    display: block;
    height: 100%;
    min-width: 2px;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--df-primary), var(--df-blue));
}

.df-object-usage-meta {
    color: var(--df-muted);
    font-size: 0.76rem;
    font-weight: 800;
}

@media (max-width: 1280px) {
    .df-breadcrumb-filter-row {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .df-server-action-stack {
        justify-content: flex-start;
    }

    .df-server-action-stack .df-server-filter-inline {
        max-width: none;
        flex-basis: 100%;
    }

    .df-expiration-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .df-breadcrumb-filter-row .df-breadcrumb {
        flex-wrap: wrap;
        row-gap: 0.35rem;
    }

    .df-license-dialog-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .df-server-filter-box {
        flex-direction: column;
        align-items: stretch;
    }

    .df-server-filter-label {
        min-width: unset;
    }

    .df-server-dropdown {
        width: 100%;
    }

    .df-server-action-stack {
        align-items: stretch;
    }

    .df-load-progress {
        justify-content: center;
        width: 100%;
    }

    .df-expiration-card {
        padding: 12px;
    }
}

@media (max-width: 640px) {
    .df-expiration-card-top {
        flex-direction: column;
        align-items: stretch;
    }

    .df-expiration-badge {
        align-self: flex-start;
    }

    .df-expiration-main,
    .df-license-dialog-summary {
        grid-template-columns: 1fr;
    }
}

/* Shared card action menu fallback/global styles */
.df-card-action-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.df-card-action-trigger {
    width: 34px !important;
    min-width: 34px !important;
    height: 34px !important;
    border-radius: 999px !important;
    color: var(--df-muted) !important;
    background: rgba(148, 163, 184, 0.08) !important;
    border: 1px solid var(--df-border) !important;
}

.df-card-action-trigger:hover {
    color: var(--df-text) !important;
    background: rgba(148, 163, 184, 0.16) !important;
}

.df-card-action-popover {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    padding: 8px;
    border-radius: 16px;
    background: var(--df-card-strong);
    border: 1px solid var(--df-border);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
    display: grid;
    gap: 4px;
    z-index: 1000;
}

.df-card-action-item {
    appearance: none;
    border: 0;
    outline: 0;
    width: 100%;
    min-height: 36px;
    padding: 8px 10px;
    border-radius: 12px;
    background: transparent;
    color: var(--df-text);
    display: flex;
    align-items: center;
    gap: 10px;
    font: inherit;
    font-size: 0.86rem;
    font-weight: 750;
    text-align: left;
    cursor: pointer;
}

.df-card-action-item:hover {
    background: rgba(24, 214, 232, 0.10);
    color: var(--df-primary);
}

.df-card-action-item .rz-icon {
    font-size: 18px;
    color: inherit;
}

.df-card-action-item.disabled,
.df-card-action-item:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.df-card-action-item.disabled:hover,
.df-card-action-item:disabled:hover {
    background: transparent;
    color: var(--df-text);
}

/* =========================================================
   Object usage chart axis priority
========================================================= */

.df-object-usage-chart-shell {
    width: 100%;
    min-height: 400px;
    padding-left: var(--object-axis-gutter, 190px);
    padding-right: 18px;
    padding-top: 8px;
    box-sizing: border-box;
    overflow: visible;
}

.df-object-usage-chart {
    width: 100% !important;
    height: 100% !important;
    overflow: visible !important;
}

    .df-object-usage-chart svg {
        overflow: visible !important;
    }

    .df-object-usage-chart text {
        fill: var(--df-text) !important;
        font-weight: 750 !important;
    }

    .df-object-usage-chart .rz-axis text {
        font-size: 12px !important;
    }

    .df-object-usage-chart .rz-legend text {
        fill: var(--df-text) !important;
        font-size: 13px !important;
        font-weight: 750 !important;
    }

/* =========================================================
   Server page charts and summary section
========================================================= */

.df-breadcrumb-chevron {
    font-size: 16px;
}

.df-license-type-chart {
    width: 100%;
    height: 320px;
}

.df-server-pure-chart .df-page-heading,
.df-server-pure-chart .df-kpi-grid,
.df-server-pure-chart .df-grid-3,
.df-server-pure-chart .df-grid-1 {
    display: none !important;
}

.df-server-pure-chart .df-grid-2 {
    grid-template-columns: minmax(0, 1fr);
    margin: 0;
}

.df-server-pure-chart .df-card-action-menu {
    display: none !important;
}

.df-server-pure-chart-license-type-distribution .df-server-chart-object-usage,
.df-server-pure-chart-object-usage .df-server-chart-license-type-distribution {
    display: none !important;
}

.df-server-pure-chart .df-card {
    min-height: calc(100vh - 36px);
}

.df-server-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.df-server-summary-grid > .df-server-side,
.df-server-summary-grid > .df-server-health-spider-panel,
.df-server-summary-grid > .df-card.df-server-health-spider-panel {
    height: 100%;
    min-height: 0;
}

.df-server-summary-grid .df-server-side {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 10px;
    min-height: 0;
}

.df-server-summary-grid .df-server-gauge-card {
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 22px 24px 10px !important;
}

.df-server-summary-grid .df-server-gauge-card .df-lpr-card-header {
    margin-bottom: 0;
}

.df-server-summary-grid .df-server-gauge-card .df-lpr-card-header h3,
.df-server-summary-grid .df-server-bottom-grid .df-lpr-card-header h3 {
    line-height: 1.15;
    margin: 0;
}

.df-server-summary-grid .df-server-gauge-wrap {
    width: min(100%, 760px);
    height: 242px;
    margin: -4px auto -6px;
    overflow: hidden;
}

.df-server-gauge {
    width: 100%;
    height: 242px;
}

.df-server-gauge-value {
    margin-top: -50%;
}

.df-server-summary-grid .df-server-bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
    min-height: 0;
    margin: 0 !important;
}

.df-server-summary-grid .df-server-bottom-grid .df-lpr-card {
    height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 18px 20px !important;
}

.df-server-summary-grid .df-server-bottom-grid .df-lpr-card-header {
    margin-bottom: 12px;
}

.df-server-summary-grid .df-server-bottom-grid .df-timeline,
.df-server-summary-grid .df-server-bottom-grid .df-health-list.compact {
    margin: 0;
    padding: 0;
}

.df-server-summary-grid .df-server-activity-card .df-timeline {
    display: grid;
    gap: 14px;
}

.df-server-summary-grid .df-server-activity-card .df-timeline-item {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr) auto;
    align-items: start;
    gap: 12px;
    min-width: 0;
    padding: 0;
    margin: 0 !important;
}

.df-server-summary-grid .df-server-activity-card .df-timeline-dot {
    background: var(--activity-color);
    color: var(--activity-color);
    margin-top: 8px;
}

.df-server-summary-grid .df-server-health-summary-card .df-health-list.compact {
    display: grid;
    gap: 0;
}

.df-server-summary-grid .df-server-health-summary-card .df-health-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 52px;
    margin: 0 !important;
    padding: 10px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.df-server-summary-grid .df-server-health-summary-card .df-health-row:first-child {
    border-top: 0;
    padding-top: 0;
}

.df-server-summary-grid .df-server-health-summary-card .df-health-row:last-child {
    padding-bottom: 0;
}

.df-server-summary-grid .df-server-health-summary-card .df-health-row > span:first-child {
    min-width: 0;
    color: var(--df-text);
}

.df-server-summary-grid .df-server-health-summary-card .df-health-row > span:last-child {
    flex: 0 1 auto;
    text-align: right;
    white-space: nowrap;
}

.df-object-usage-custom-chart {
    width: 100%;
    min-height: var(--usage-chart-height, 320px);
    padding: 18px 14px 10px 0;
    box-sizing: border-box;
    overflow: hidden;
}

.df-object-usage-custom-rows {
    display: grid;
    gap: 18px;
}

.df-object-usage-custom-row {
    display: grid;
    grid-template-columns: var(--usage-label-width, 220px) minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 34px;
}

.df-object-usage-custom-label {
    color: var(--df-text);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.df-object-usage-custom-track {
    position: relative;
    height: 34px;
    border-left: 2px solid rgba(148, 163, 184, 0.55);
    background-image: linear-gradient(to right, rgba(148, 163, 184, 0.20) 1px, transparent 1px), linear-gradient(to right, rgba(148, 163, 184, 0.12) 1px, transparent 1px);
    background-size: 25% 100%, 12.5% 100%;
    background-position: 0 0, 0 0;
}

.df-object-usage-custom-stack {
    display: flex;
    height: 100%;
    min-width: 2px;
    border-radius: 0 7px 7px 0;
    overflow: hidden;
}

.df-object-usage-custom-used,
.df-object-usage-custom-unused {
    position: relative;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--df-text);
    font-size: 12px;
    font-weight: 900;
}

.df-object-usage-custom-used {
    background: rgba(24, 214, 232, 0.22);
}

.df-object-usage-custom-unused {
    background: rgba(99, 130, 220, 0.42);
}

.df-object-usage-custom-used span,
.df-object-usage-custom-unused span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 22px;
    padding: 0 7px;
    border-radius: 7px;
    background: rgba(71, 85, 105, 0.88);
    border: 1px solid rgba(203, 213, 225, 0.22);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
    white-space: nowrap;
}

.df-object-usage-custom-axis {
    display: grid;
    grid-template-columns: var(--usage-label-width, 220px) minmax(0, 1fr);
    gap: 14px;
    margin-top: 10px;
}

.df-object-usage-custom-axis-values {
    position: relative;
    height: 24px;
    border-top: 1px solid rgba(148, 163, 184, 0.55);
}

.df-object-usage-custom-axis-values span {
    position: absolute;
    top: 8px;
    transform: translateX(-50%);
    color: var(--df-text);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.df-object-usage-custom-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    margin-top: 22px;
    color: var(--df-text);
    font-size: 13px;
    font-weight: 400;
}

.df-object-usage-custom-legend span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.df-object-usage-custom-legend i {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    display: inline-block;
}

.df-object-usage-custom-legend i.used {
    background: rgba(24, 214, 232, 0.42);
}

.df-object-usage-custom-legend i.unused {
    background: rgba(99, 130, 220, 0.62);
}

html.df-theme-light .df-object-usage-custom-used span,
html[data-df-theme="light"] .df-object-usage-custom-used span,
html.df-theme-light .df-object-usage-custom-unused span,
html[data-df-theme="light"] .df-object-usage-custom-unused span {
    background: rgba(241, 245, 249, 0.95);
    border-color: rgba(15, 23, 42, 0.12);
    color: #0f172a;
}

.df-server-health-spider-panel {
    min-height: 0;
}

.df-server-health-spider-panel .df-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    min-height: 0;
}

.df-server-summary-grid .df-server-health-spider-panel {
    align-self: stretch;
}

.df-health-server-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 2px 4px;
    scrollbar-width: thin;
}

.df-health-server-tab {
    appearance: none;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.20);
    color: var(--df-text);
    min-width: 160px;
    max-width: 220px;
    padding: 8px 10px;
    text-align: left;
    cursor: pointer;
    display: grid;
    gap: 3px;
    flex: 0 0 auto;
    transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.df-health-server-tab:hover {
    border-color: rgba(24, 214, 232, 0.42);
    background: rgba(24, 214, 232, 0.10);
}

.df-health-server-tab.active {
    border-color: rgba(24, 214, 232, 0.72);
    background: rgba(24, 214, 232, 0.16);
    box-shadow: 0 0 0 1px rgba(24, 214, 232, 0.16) inset;
}

.df-health-server-tab span,
.df-health-server-tab em {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.df-health-server-tab span {
    font-size: 13px;
    font-weight: 800;
}

.df-health-server-tab em {
    color: var(--df-muted);
    font-size: 11px;
    font-style: normal;
    line-height: 1.25;
}

.df-health-spider-wrap {
    width: 100%;
    min-height: 290px;
    overflow: hidden;
}

.df-health-spider-chart {
    width: 100%;
    height: 290px;
    --df-health-spider-fill: rgba(24, 214, 232, 0.16);
    --df-health-spider-stroke: #18d6e8;
    --df-health-spider-grid: rgba(148, 163, 184, 0.22);
    --df-health-spider-axis: rgba(148, 163, 184, 0.16);
}

.df-health-spider-svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.df-health-spider-grid-ring {
    fill: none;
    stroke: var(--df-health-spider-grid) !important;
    stroke-width: 1;
    vector-effect: non-scaling-stroke;
}

.df-health-spider-axis {
    stroke: var(--df-health-spider-axis) !important;
    stroke-width: 1;
    vector-effect: non-scaling-stroke;
}

.df-health-spider-area {
    fill: var(--df-health-spider-fill) !important;
    stroke: none !important;
}

.df-health-spider-line {
    fill: none !important;
    stroke: var(--df-health-spider-stroke) !important;
    stroke-width: 2.5;
    stroke-linejoin: round;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
}

.df-health-spider-label {
    fill: var(--df-text) !important;
    font-size: 0.82rem;
    font-weight: 850;
    stroke: none !important;
}

html[data-df-theme="light"] .df-health-spider-chart,
html.df-theme-light .df-health-spider-chart {
    --df-health-spider-fill: rgba(8, 145, 178, 0.16);
    --df-health-spider-stroke: #0891b2;
    --df-health-spider-grid: rgba(15, 23, 42, 0.18);
    --df-health-spider-axis: rgba(15, 23, 42, 0.12);
}

.df-health-spider-wrap .rz-legend,
.df-health-spider-wrap .rz-chart-legend {
    display: none !important;
}

.df-health-spider-note {
    color: var(--df-muted);
    font-size: 12px;
    line-height: 1.4;
    margin-top: -4px;
}

.df-health-server-mini-grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
}

.df-health-server-card {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 8px;
    padding: 10px;
    background: rgba(15, 23, 42, 0.16);
    min-width: 0;
}

.df-health-server-card.active {
    background: rgba(15, 23, 42, 0.20);
}

.df-health-server-mini-card {
    appearance: none;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 8px;
    padding: 8px 10px;
    background: rgba(15, 23, 42, 0.12);
    color: var(--df-text);
    cursor: pointer;
    text-align: left;
    display: grid;
    gap: 3px;
    min-width: 150px;
    flex: 0 0 170px;
}

.df-health-server-mini-card:hover {
    border-color: rgba(24, 214, 232, 0.38);
    background: rgba(24, 214, 232, 0.09);
}

.df-health-server-mini-card strong,
.df-health-server-mini-card span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.df-health-server-mini-card strong {
    font-size: 12px;
    font-weight: 800;
}

.df-health-server-mini-card span {
    color: var(--df-muted);
    font-size: 11px;
}

.df-health-server-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 12px;
}

.df-health-server-metrics div {
    min-width: 0;
}

.df-health-server-metrics span {
    display: block;
    color: var(--df-muted);
    font-size: 11px;
    line-height: 1.2;
}

.df-health-server-metrics strong {
    display: block;
    color: var(--df-text);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.df-health-server-metrics i {
    display: block;
    width: 100%;
    height: 4px;
    margin-top: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(24, 214, 232, 0.95), rgba(99, 102, 241, 0.95));
}

.df-health-list.compact {
    display: grid;
    gap: 8px;
    margin-top: 2px;
}

html.df-theme-light .df-health-server-tab,
html[data-df-theme="light"] .df-health-server-tab,
html.df-theme-light .df-health-server-mini-card,
html[data-df-theme="light"] .df-health-server-mini-card,
html.df-theme-light .df-health-server-card,
html[data-df-theme="light"] .df-health-server-card {
    background: rgba(248, 250, 252, 0.86);
    border-color: rgba(15, 23, 42, 0.10);
}

html.df-theme-light .df-health-server-tab.active,
html[data-df-theme="light"] .df-health-server-tab.active {
    background: rgba(14, 165, 233, 0.12);
    border-color: rgba(14, 165, 233, 0.55);
}

@media (max-width: 900px) {
    .df-object-usage-chart-shell {
        padding-left: 130px;
        padding-right: 10px;
    }

    .df-server-summary-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .df-server-summary-grid .df-server-gauge-card,
    .df-server-summary-grid .df-server-bottom-grid .df-lpr-card {
        padding: 20px !important;
    }

    .df-server-summary-grid .df-server-bottom-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }

    .df-server-summary-grid .df-server-gauge-wrap {
        height: 230px;
    }

    .df-server-gauge,
    .df-server-summary-grid .df-server-gauge-wrap .rz-gauge,
    .df-server-summary-grid .df-server-gauge-wrap svg {
        height: 230px !important;
    }

    .df-object-usage-custom-row,
    .df-object-usage-custom-axis {
        grid-template-columns: 160px minmax(0, 1fr);
    }

    .df-object-usage-custom-label {
        font-size: 12px;
    }

    .df-health-spider-wrap {
        min-height: 280px;
    }

    .df-health-spider-chart,
    .df-health-spider-wrap .rz-chart {
        height: 280px !important;
    }

    .df-health-server-tab {
        min-width: 145px;
    }

    .df-health-server-metrics {
        grid-template-columns: minmax(0, 1fr);
    }
}
