* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f1f5f9;
    min-height: 100vh;
    padding: 30px 20px;
    color: #1e293b;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo {
    height: 60px;
    width: auto;
}

.header-title {
    text-align: left;
}

.header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.header h1 span {
    color: #00AAFF;
}

.subtitle {
    color: #64748b;
    font-size: 0.95rem;
}

/* Header Right Controls */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.lang-switcher select {
    appearance: none;
    -webkit-appearance: none;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 32px 8px 12px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: border-color 0.2s;
}

.lang-switcher select:hover {
    border-color: #00AAFF;
}

.lang-switcher select:focus {
    outline: none;
    border-color: #00AAFF;
}

.lang-switcher::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #64748b;
    pointer-events: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-export {
    background: #0f172a;
    color: #fff;
}

.btn-export:hover {
    background: #1e293b;
}

.btn-primary {
    background: #00AAFF;
    color: #fff;
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-primary:hover {
    background: #0090dd;
}

.btn-remove {
    background: #fee2e2;
    color: #dc2626;
    padding: 6px 12px;
    font-size: 0.8rem;
}

.btn-remove:hover {
    background: #fecaca;
}

.btn-remove:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Main Layout */
.main-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Cards */
.card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    margin-bottom: 20px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon.blue {
    background: #dbeafe;
    color: #2563eb;
}

.card-icon.cyan {
    background: #e0f7fa;
    color: #00AAFF;
}

.card-icon.green {
    background: #dcfce7;
    color: #16a34a;
}

.card-icon.orange {
    background: #ffedd5;
    color: #ea580c;
}

.card-header h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
}

.card-subtitle {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 2px;
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    color: #1e293b;
    background: #fff;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00AAFF;
}

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

.form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.currency-input {
    position: relative;
}

.currency-input::before {
    content: '\20AC';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-weight: 600;
}

.currency-input input {
    padding-left: 32px !important;
}

/* Slider Input */
.slider-input {
    display: flex;
    align-items: center;
    gap: 16px;
}

.slider-input input[type="range"] {
    flex: 1;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: #e5e7eb;
    border-radius: 3px;
    outline: none;
}

.slider-input input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #00AAFF;
    cursor: pointer;
}

.slider-input input[type="number"] {
    width: 70px;
    text-align: center;
    padding: 8px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
}

/* Searchable Select */
.select-wrapper {
    position: relative;
}

.select-wrapper .select-search {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #00AAFF;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    background: #fff;
    z-index: 3;
    display: none;
}

.select-wrapper.searching .select-search {
    display: block;
}

.select-wrapper .select-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
    margin-top: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.select-wrapper.open .select-dropdown {
    display: block;
}

.select-option {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.15s;
}

.select-option:hover {
    background: #f0f9ff;
}

.select-option.hidden {
    display: none;
}

/* Plant Tabs */
.plant-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    background: #f1f5f9;
    border-radius: 8px;
    padding: 4px;
}

.plant-tab {
    flex: 1;
    text-align: center;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s;
}

.plant-tab.active {
    background: #fff;
    color: #00AAFF;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.plant-content {
    display: none;
}

.plant-content.active {
    display: block;
}

/* Lines Table */
.lines-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
}

.lines-table th {
    text-align: left;
    padding: 10px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    border-bottom: 2px solid #e5e7eb;
}

.lines-table td {
    padding: 10px 12px;
    font-size: 0.85rem;
    border-bottom: 1px solid #f1f5f9;
}

.lines-table td.added-value-cell {
    font-weight: 600;
    color: #0891b2;
    white-space: nowrap;
}

.lines-table select {
    padding: 6px 10px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.85rem;
    width: 100%;
    min-width: 150px;
}

.line-number {
    font-weight: 700;
    color: #00AAFF;
}

.line-name-input {
    padding: 6px 10px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.85rem;
    width: 100%;
    min-width: 100px;
    transition: border-color 0.2s;
}

.line-name-input:focus {
    outline: none;
    border-color: #00AAFF;
}

.custom-value-input {
    margin-top: 6px;
    padding: 6px 10px;
    border: 2px solid #00AAFF;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.85rem;
    width: 100%;
    background: #f0f9ff;
}

.custom-value-input:focus {
    outline: none;
    border-color: #0090dd;
}

/* OEE Input */
.oee-input {
    padding: 6px 10px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.85rem;
    width: 80px;
    text-align: center;
    transition: border-color 0.2s;
}

.oee-input:focus {
    outline: none;
    border-color: #00AAFF;
}

/* Calculation Breakdown */
.calc-breakdown-formula {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #0369a1;
    margin-bottom: 16px;
}

.calc-breakdown-table {
    width: 100%;
    border-collapse: collapse;
}

.calc-breakdown-table th {
    text-align: left;
    padding: 8px 10px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    border-bottom: 2px solid #e5e7eb;
}

.calc-breakdown-table td {
    padding: 8px 10px;
    font-size: 0.82rem;
    border-bottom: 1px solid #f1f5f9;
}

.calc-breakdown-table .annual-value {
    font-weight: 700;
    color: #0891b2;
    text-align: right;
}

.calc-breakdown-table th:last-child {
    text-align: right;
}

.calc-breakdown-total td {
    padding: 12px 10px;
    font-weight: 700;
    font-size: 0.92rem;
    border-top: 2px solid #e5e7eb;
    border-bottom: none;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.calc-breakdown-total td.annual-value {
    color: #0284c7;
    font-size: 1rem;
}

/* Computed Value Display */
.computed-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 10px;
    margin-top: 4px;
}

.computed-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0369a1;
}

.computed-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0284c7;
}

.info-text {
    font-size: 0.78rem;
    color: #94a3b8;
    margin-top: 12px;
    line-height: 1.5;
}

.benchmark-note {
    font-weight: 400;
    color: #94a3b8;
    font-size: 0.75rem;
}

/* Results Placeholder */
.results-placeholder {
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
}

.results-placeholder-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.results-placeholder h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 8px;
}

.results-placeholder p {
    font-size: 0.9rem;
}

/* Scenario Grid */
.scenario-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.scenario-card {
    padding: 20px 14px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e5e7eb;
    background: #fff;
    transition: all 0.3s;
    cursor: pointer;
}

.scenario-card:hover {
    border-color: #93c5fd;
    background: #f8fafc;
}

.scenario-card.selected {
    border-color: #00AAFF;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0,170,255,0.15);
}

.scenario-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.scenario-card.selected .scenario-label {
    color: #00AAFF;
}

.scenario-badge {
    display: inline-block;
    padding: 2px 10px;
    background: #00AAFF;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    margin-bottom: 8px;
}

.scenario-annual {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
}

.scenario-card.selected .scenario-annual {
    color: #0284c7;
    font-size: 1.7rem;
}

.scenario-annual-label {
    font-size: 0.72rem;
    color: #94a3b8;
    margin-bottom: 12px;
}

.scenario-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 10px auto;
    width: 60%;
}

.scenario-card.selected .scenario-divider {
    background: #bae6fd;
}

.scenario-three-year {
    font-size: 1.1rem;
    font-weight: 700;
    color: #374151;
}

.scenario-card.selected .scenario-three-year {
    color: #0369a1;
}

.scenario-three-year-label {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-bottom: 10px;
}

.scenario-oee {
    font-size: 0.95rem;
    font-weight: 700;
    color: #16a34a;
}

.scenario-oee-label {
    font-size: 0.65rem;
    color: #94a3b8;
    margin-top: 2px;
}

/* Custom OEE Input */
.custom-oee-input-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2px 0;
}

.custom-oee-input {
    width: 72px;
    padding: 4px 6px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    color: #16a34a;
    text-align: center;
    background: #fff;
    transition: border-color 0.2s;
}

.custom-oee-input:focus {
    outline: none;
    border-color: #00AAFF;
}

.scenario-card.selected .custom-oee-input {
    border-color: #00AAFF;
    background: #fff;
}

/* Sector Info Grid */
.sector-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.sector-info-item {
    text-align: center;
    padding: 14px;
    background: #f8fafc;
    border-radius: 10px;
}

.sector-info-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
}

.sector-info-label {
    font-size: 0.72rem;
    color: #64748b;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Value Bar Chart */
.value-bar-container {
    margin-top: 20px;
    padding: 18px;
    background: #f8fafc;
    border-radius: 12px;
}

.value-bar-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 14px;
}

.value-bar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.value-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.value-bar-label {
    width: 90px;
    font-size: 0.78rem;
    color: #64748b;
    text-align: right;
}

.value-bar-track {
    flex: 1;
    height: 26px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.value-bar-fill {
    height: 100%;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding-right: 10px;
    justify-content: flex-end;
    font-size: 0.78rem;
    font-weight: 600;
    color: #ffffff;
    transition: width 0.5s ease;
}

.value-bar-fill.current {
    background: #94a3b8;
}

.value-bar-fill.potential {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.value-bar-gap {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.72rem;
    color: #059669;
    font-weight: 600;
}

/* Break-even Section */
.break-even-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.break-even-result-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #a7f3d0;
    border-radius: 50px;
}

.break-even-result-badge .icon {
    font-size: 1.1rem;
}

.break-even-result-badge .text {
    font-size: 0.9rem;
    color: #064e3b;
}

.break-even-result-badge .value {
    font-weight: 700;
    color: #047857;
}

.break-even-result-badge.warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #fcd34d;
}

.break-even-result-badge.warning .text,
.break-even-result-badge.warning .value {
    color: #92400e;
}

.break-even-result-badge.error {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    border-color: #fca5a5;
}

.break-even-result-badge.error .text,
.break-even-result-badge.error .value {
    color: #991b1b;
}

.graph-container {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 16px;
}

#breakEvenCanvas {
    width: 100%;
    height: 100%;
    background: #f8fafc;
    border-radius: 12px;
}

.legend {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.85rem;
}

.legend-color {
    width: 24px;
    height: 4px;
    border-radius: 2px;
}

.legend-color.benefit {
    background: #10b981;
}

.legend-color.cost {
    background: #ef4444;
}

.break-even-note {
    text-align: center;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 8px;
    font-style: italic;
}

/* Tooltip */
.th-tooltip {
    position: relative;
    cursor: help;
    border-bottom: 1px dashed #94a3b8;
}

.th-tooltip .tooltip-text {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 320px;
    background: #0f172a;
    color: #f1f5f9;
    font-size: 0.78rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.6;
    padding: 14px 16px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 100;
    transition: opacity 0.2s, visibility 0.2s;
    pointer-events: none;
}

.th-tooltip .tooltip-text::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 20px;
    border: 6px solid transparent;
    border-bottom-color: #0f172a;
}

.th-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Tooltip appearing above the element */
.tooltip-above {
    top: auto !important;
    bottom: calc(100% + 8px) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.tooltip-above::before {
    top: 100% !important;
    bottom: auto !important;
    left: 50% !important;
    transform: translateX(-50%);
    border-bottom-color: transparent !important;
    border-top-color: #0f172a !important;
}

/* Saving potential tooltip inline icon */
.saving-potential-tooltip {
    vertical-align: middle;
}

.tooltip-title {
    font-weight: 700;
    color: #00AAFF;
    display: block;
    margin-bottom: 6px;
}

/* Calculation Info Button */
.btn-calc-info {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid #e5e7eb;
    background: #fff;
    color: #64748b;
    font-family: inherit;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-calc-info:hover {
    border-color: #00AAFF;
    color: #00AAFF;
    background: #f0f9ff;
}

/* Calculation Modal */
.calc-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.calc-modal-overlay.open {
    display: flex;
}

.calc-modal {
    background: #fff;
    border-radius: 16px;
    max-width: 640px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: modalSlideIn 0.25s ease;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.calc-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px 16px;
    border-bottom: 1px solid #e5e7eb;
}

.calc-modal-header h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
}

.calc-modal-close {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #94a3b8;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: color 0.2s;
}

.calc-modal-close:hover {
    color: #374151;
}

.calc-modal-body {
    padding: 24px 28px 28px;
}

.calc-section {
    margin-bottom: 22px;
}

.calc-section:last-child {
    margin-bottom: 0;
}

.calc-section h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.calc-formula {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0369a1;
    font-family: 'Inter', monospace;
    margin: 8px 0;
}

.calc-desc {
    font-size: 0.84rem;
    color: #475569;
    line-height: 1.6;
}

.calc-ramp {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 12px 0;
}

.calc-ramp-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.calc-ramp-label {
    width: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
}

.calc-ramp-bar {
    height: 24px;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    min-width: 40px;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    color: #94a3b8;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 640px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .header-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .header h1 {
        font-size: 1.6rem;
    }

    .header-right {
        width: 100%;
        justify-content: space-between;
    }

    .form-row,
    .form-row-3 {
        grid-template-columns: 1fr;
    }

    .scenario-grid {
        grid-template-columns: 1fr 1fr;
    }

    .scenario-card.selected {
        transform: none;
    }

    .sector-info-grid {
        grid-template-columns: 1fr;
    }

    .break-even-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}
