/* 
 * Volvo Penta Developer Portal Style
 * Clean & Minimal Light Theme
 */

:root {
    /* Color Palette - Clean White Theme */
    --primary-rgb: 0, 102, 204;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #f1f3f5;
    --bg-card: #ffffff;
    --bg-hover: #f1f3f5;

    /* Volvo Brand Colors - Premium Deep Blue Theme */
    --volvo-navy: #002754;
    --volvo-ocean: #006ab3;
    --volvo-dark: #141414;
    --volvo-gray: #4a4d4e;

    /* Global Accents */
    --accent-primary: var(--volvo-navy);
    --accent-secondary: var(--volvo-ocean);
    --accent-success: #10b981;
    --accent-warning: #f59e0b;
    --accent-danger: #ef4444;

    /* Text Colors */
    --text-primary: #141414;
    --text-secondary: #4a4d4e;
    --text-muted: #6b7280;

    /* Border */
    --border-color: #e9ecef;
    --border-dark: #dee2e6;
    --border-light: rgba(0, 0, 0, 0.05);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.1);

    /* Spacing */
    --sidebar-width: 260px;
    --header-height: 64px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* App Container */
.app-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar - Clean White */
.sidebar {
    width: var(--sidebar-width);
    background: var(--bg-primary);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 20px;
    border-bottom: 1px solid var(--border-color);
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--text-primary);
}

.logo span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    flex: 1;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: left;
    width: 100%;
}

.nav-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.nav-item:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.nav-item.active {
    background: rgba(0, 39, 84, 0.08);
    color: var(--volvo-navy);
    font-weight: 700;
    border-left: 3px solid var(--volvo-navy);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.nav-item[data-tab="strategy-settings"] {
    margin-top: 8px;
    background: rgba(var(--primary-rgb), 0.05);
    border: 1px dashed rgba(var(--primary-rgb), 0.3);
}

.nav-item[data-tab="strategy-settings"]:hover {
    background: rgba(var(--primary-rgb), 0.1);
}

.nav-item[data-tab="strategy-settings"].active {
    background: rgba(var(--primary-rgb), 0.15);
    border: 1px solid var(--accent-primary);
}

.sidebar-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border-color);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-success);
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    padding: 32px 40px;
    min-height: 100vh;
    background: var(--bg-secondary);
}

.tab-content {
    display: none;
    animation: fadeIn 0.2s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Page Header */
.page-header {
    margin-bottom: 32px;
}

.page-header h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.page-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.header-actions {
    margin-top: 16px;
}

/* Buttons - Clean Style */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
    outline: none;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--volvo-navy);
    color: var(--bg-primary);
    border-color: var(--volvo-navy);
}

.btn-primary:hover {
    background: var(--volvo-ocean);
    border-color: var(--volvo-ocean);
}

.btn-primary:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
}

.btn-primary:active,
.btn-primary.active {
    background: #000000;
    border-color: #000000;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-primary.disabled,
.btn-primary:disabled {
    background: var(--border-dark);
    border-color: var(--border-dark);
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-secondary {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 2px solid var(--border-dark);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--text-secondary);
}

.btn-secondary:focus {
    border-color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.btn-secondary:active,
.btn-secondary.active {
    background: var(--bg-tertiary);
    border-color: var(--text-primary);
}

.btn-outline {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn-outline:hover {
    background: var(--bg-tertiary);
}

.btn-outline:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
}

.btn-outline:active,
.btn-outline.active {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
    font-weight: 600;
}

/* Upload Zone */
.upload-zone {
    background: var(--bg-card);
    border: 2px dashed var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    margin-bottom: 24px;
}

.upload-zone:hover,
.upload-zone.dragover {
    border-color: var(--text-primary);
    background: var(--bg-tertiary);
}

.upload-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--text-muted);
}

.upload-icon svg {
    width: 100%;
    height: 100%;
}

.upload-zone h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.upload-zone p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 8px;
}

.file-hint {
    font-size: 12px;
    color: var(--text-muted);
}

.upload-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.upload-result {
    margin-top: 24px;
}

.upload-result.hidden {
    display: none;
}

.result-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent-success);
}

.result-card svg {
    width: 24px;
    height: 24px;
    color: var(--accent-success);
}

.result-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.result-info p {
    color: var(--text-muted);
    font-size: 13px;
}

.result-card.loading {
    border-left-color: var(--accent-primary);
}

.result-card.loading .spinner {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-color);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* General Spinner */
.spinner {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-color);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

.spinner-small {
    width: 16px;
    height: 16px;
    border: 2px solid var(--border-color);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    vertical-align: middle;
}

.result-card.hidden {
    display: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.requirements-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    border: 1px solid var(--border-color);
}

.requirements-card h3 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-family: monospace;
    color: var(--text-secondary);
}

/* Critical Badge - Ocean Teal */
.badge-critical {
    display: inline-block;
    padding: 4px 10px;
    background: #007B8A;
    color: #ffffff;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
    color: var(--text-secondary);
}

.checkbox-label:hover {
    color: var(--text-primary);
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.select-input {
    padding: 8px 12px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
}

.select-input:focus {
    outline: none;
    border-color: var(--text-primary);
}

/* Data Table */
.data-table-container {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    background: var(--bg-tertiary);
    padding: 12px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.data-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-primary);
}

.data-table tr:hover td {
    background: var(--bg-tertiary);
}

.data-table tr:last-child td {
    border-bottom: none;
}

/* Comparison Container */
.comparison-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
}

.comparison-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 2px solid var(--border-color);
    transition: all var(--transition-fast);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.comparison-card:hover {
    border-color: var(--text-secondary);
}

.comparison-card.before {
    border-left: 4px solid var(--text-muted);
}

.comparison-card.before.selected,
.comparison-card.before:focus {
    border-color: var(--text-secondary);
    border-left-color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    background: var(--bg-tertiary);
}

.comparison-card.after {
    border-left: 4px solid var(--text-primary);
}

.comparison-card.after.selected,
.comparison-card.after:focus {
    border-color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
    background: var(--bg-tertiary);
}

.comparison-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.comparison-header h3 {
    font-size: 16px;
    font-weight: 600;
}

.badge {
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--bg-tertiary);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.badge.recommended {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

.comparison-metrics {
    display: grid;
    gap: 12px;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.metric:last-child {
    border-bottom: none;
}

.metric-label {
    font-size: 14px;
    color: var(--text-muted);
}

.metric-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 24px;
    padding: 0 10px;
}

.comparison-arrow svg {
    width: 24px;
    height: 24px;
}

.comparison-summary {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--text-secondary);
}

.recommendation-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

/* Engine Cards */
.engine-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .engine-cards {
        grid-template-columns: 1fr;
    }
}

.engine-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.engine-card:hover {
    box-shadow: var(--shadow-md);
}

.engine-card.shortage {
    border-left: 4px solid var(--accent-danger);
}

.engine-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.engine-card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--volvo-navy);
}

/* Availability Badge */
.availability-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.availability-badge.good {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.availability-badge.warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-warning);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.availability-badge.danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--accent-danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Set Progress */
.set-progress {
    margin-bottom: 24px;
}

.set-progress .progress-bar {
    height: 10px;
    background: var(--bg-tertiary);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 8px;
}

.set-progress .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--volvo-navy), var(--volvo-ocean));
    border-radius: 5px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.set-progress .progress-fill.warning {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.set-progress .progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.engine-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.engine-stat {
    text-align: center;
}

.engine-stat-value {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.engine-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.bottleneck-list {
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.bottleneck-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.bottleneck-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    margin-bottom: 6px;
}

.bottleneck-part {
    font-size: 12px;
    color: var(--text-primary);
    font-family: monospace;
}

.bottleneck-qty {
    font-size: 12px;
    color: var(--accent-danger);
    font-weight: 600;
}

/* Report Tabs */
.report-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.report-tab {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-bottom: -1px;
}

.report-tab:hover {
    color: var(--text-primary);
}

.report-tab.active {
    color: var(--text-primary);
    border-bottom-color: var(--text-primary);
    font-weight: 600;
}

/* Report Content */
.report-content {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border-color);
    min-height: 300px;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    color: var(--text-muted);
}

.loading-spinner .spinner {
    width: 32px;
    height: 32px;
    border: 2px solid var(--border-color);
    border-top-color: var(--text-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 12px;
}

/* Card and Settings */
.card,
.settings-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.card-header {
    padding: 16px 20px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
}

.card-header h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.card-body {
    padding: 20px;
}

.model-status {
    padding: 16px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.model-status p {
    color: var(--text-secondary);
    font-size: 14px;
}

.model-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.help-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .sidebar {
        width: 80px;
    }

    .logo span,
    .nav-item span,
    .status-indicator span {
        display: none;
    }

    .nav-item {
        justify-content: center;
        padding: 12px;
    }

    .main-content {
        margin-left: 80px;
        padding: 24px;
    }

    .comparison-container {
        grid-template-columns: 1fr;
    }

    .comparison-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        flex-direction: row;
        overflow-x: auto;
    }

    .nav-menu {
        flex-direction: row;
        padding: 8px;
    }

    .main-content {
        margin-left: 0;
        padding: 16px;
    }

    .engine-cards {
        grid-template-columns: 1fr;
    }
}

/* Engine Card Parts Detail */
.parts-detail-wrapper {
    margin-top: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
}

.parts-detail-wrapper summary {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    list-style: none;
    /* Hide default triangle */
    display: flex;
    align-items: center;
    gap: 6px;
}

.parts-detail-wrapper summary:hover {
    color: var(--text-primary);
}

.parts-detail-wrapper summary::before {
    content: "▶";
    font-size: 9px;
    transition: transform 0.2s;
}

.parts-detail-wrapper details[open] summary::before {
    transform: rotate(90deg);
}

.parts-detail-content {
    margin-top: 10px;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
}

.parts-mini-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
}

.parts-mini-table th {
    position: sticky;
    top: 0;
    background: var(--bg-tertiary);
    text-align: left;
    padding: 6px 8px;
    box-shadow: 0 1px 0 var(--border-color);
    color: var(--text-muted);
}

.parts-mini-table th.text-center {
    text-align: center;
}

.parts-mini-table td {
    padding: 6px 8px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
    vertical-align: middle;
}

.parts-mini-table tr:last-child td {
    border-bottom: none;
}

.parts-mini-table td.text-center {
    text-align: center;
}

.parts-mini-table .cell-name {
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-secondary);
}

.parts-mini-table .row-shortage {
    background-color: rgba(220, 53, 69, 0.05);
}

.parts-mini-table .text-danger {
    color: var(--accent-danger) !important;
}

.parts-mini-table .text-muted {
    color: var(--text-muted);
}

.parts-mini-table .fw-bold {
    font-weight: 600;
}

/* Category Badges in Order List */
.category-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.badge-critical,
.badge-overhaul {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.badge-critical {
    background: #fff0f0;
    color: #e44d26;
    border: 1px solid #ffcccc;
}

.badge-overhaul {
    background: #f0f7ff;
    color: #0076d6;
    border: 1px solid #cce5ff;
}