.nl-dashboard-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
}

.nl-dashboard-half-table {
    flex: 1;
    min-width: 0;
}

.nl-dashboard-regulations-panel {
    flex: 0 0 34%;
}

.nl-dashboard-activations-panel {
    flex: 1 1 66%;
    display: flex;
    flex-direction: column;
}

.nl-dashboard-low-atc {
    min-width: 0;
}

.nl-dashboard-half-table .data-table-nl {
    max-height: 450px;
    overflow-y: auto;
}

.nl-dashboard-regulations-panel .data-table-nl {
    max-height: 220px;
}

.nl-dashboard-full-table {
    width: 100%;
}

.nl-dashboard-full-table .data-table-nl {
    max-height: 600px;
    overflow-y: auto;
}

.fr-dashboard-atc-table,
.hu-dashboard-atc-table {
    max-height: 520px;
}

.fr-dashboard-ladder-row {
    align-items: flex-start;
}

.fr-dashboard-ladder-row .nl-dashboard-full-table {
    flex: 1 1 0;
    min-width: 0;
}

.fr-dashboard-ladder-table {
    max-height: 340px;
    overflow: auto;
}

.fr-dashboard-ladder-table table {
    font-size: 12px;
}

.fr-dashboard-ladder-table th,
.fr-dashboard-ladder-table td {
    padding: 6px 8px;
    white-space: nowrap;
}

.nl-dashboard-chart {
    width: 100%;
    min-height: 265px;
    background: #0d1117;
    padding: 8px 10px 6px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid #30363d;
    position: relative;
}

.nl-dashboard-chart canvas {
    height: 220px !important;
}

.nl-dashboard-chart.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    border-radius: 0;
    padding: 60px 80px;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nl-dashboard-chart.fullscreen canvas {
    max-width: 100%;
    max-height: calc(100vh - 200px);
    height: calc(100vh - 200px) !important;
}

.fullscreen-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #21262d 0%, #30363d 100%);
    color: #ffffff;
    border: 1px solid #30363d;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-family: "DIN", "Segoe UI", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    z-index: 10;
}

.fullscreen-btn:hover {
    background: linear-gradient(135deg, #30363d 0%, #3d444d 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.fullscreen-btn:active {
    transform: translateY(0);
}

.nl-dashboard-row h3 {
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    font-family: "DIN", "Segoe UI", sans-serif;
}

.data-table-nl {
    background: #0d1117;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid #30363d;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.data-table-nl table {
    width: 100%;
    background-color: black;
    border-collapse: collapse;
    table-layout: auto;
    font-size: 14px;
    font-weight: bold;
    display: table;
    font-family: "DIN", "Segoe UI", sans-serif;
    position: relative;
    color: white;
}

.data-table-nl thead {
    background: linear-gradient(135deg, #21262d 0%, #30363d 100%);
    position: sticky;
    top: 0;
    z-index: 30;
    display: table-header-group;
}

.data-table-nl tbody {
    display: table-row-group;
}

.data-table-nl thead tr,
.data-table-nl tbody tr {
    display: table-row;
}

.data-table-nl th {
    background: linear-gradient(135deg, #21262d 0%, #30363d 100%);
    color: #ffffff;
    padding: 8px;
    text-align: center;
    border-bottom: 1px solid #30363d;
    border-right: 1px solid #30363d;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    cursor: pointer;
    transition: background 0.3s ease;
    line-height: 1.5;
    width: auto;
    min-width: auto;
    max-width: none !important;
    display: table-cell;
    border: 1px solid #333;
}

.data-table-nl td {
    padding: 8px;
    border-bottom: 1px solid #30363d;
    border-right: 1px solid #30363d;
    background: black;
    color: white;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    vertical-align: middle;
    text-align: center;
    line-height: 1.2;
    width: auto;
    min-width: auto;
    max-width: none !important;
    display: table-cell;
    border: 1px solid #333;
}

.data-table-nl td:nth-child(1) {
    background: linear-gradient(135deg, #21262d 0%, #30363d 100%);
    color: #ffffff;
    border: 1px solid #333;
}

.data-table-nl .content-loading {
    text-align: center;
    padding: 20px;
    color: #ffffff;
    background: black;
}

.nl-dashboard-compact-table {
    max-height: 190px;
}

.nl-dashboard-compact-table th,
.nl-dashboard-compact-table td {
    padding: 4px 5px;
    font-size: 11px;
}

.nl-dashboard-atc-summary-row .nl-dashboard-hour-separator td {
    border-top: 2px solid #6b7280 !important;
    padding-top: 10px !important;
}

.nl-dashboard-atc-summary-row {
    align-items: flex-start;
}

.nl-dashboard-half-table .nl-dashboard-atc-summary-table,
.nl-dashboard-half-table .nl-dashboard-low-atc-table {
    max-height: 240px;
}

.nl-dashboard-merit-table {
    max-height: 360px;
}

.nl-dashboard-full-table .nl-dashboard-merit-volume-table {
    max-height: 340px;
}

.nl-dashboard-merit-table table {
    font-size: 11px;
}

.nl-dashboard-merit-table th,
.nl-dashboard-merit-table td {
    padding: 4px 5px;
    font-size: 11px;
    line-height: 1.1;
}
