.dashboard-container-intraday-trading {
    padding: 1rem;
    min-height: 100vh;
}

.region-dashboard {
    display: none;
    grid-gap: 1rem;
    padding: 1rem 0;
}

.region-dashboard.active {
    display: grid;
}

/* DK Layout - 3 graphs per row */
.dk-layout {
    grid-template-columns: repeat(3, 1fr);
}

/* NO Layout - 5 graphs per row */
.no-layout {
    grid-template-columns: repeat(5, 1fr);
}

/* SE Layout - 4 graphs per row */
.se-layout {
    grid-template-columns: repeat(4, 1fr);
}

.graph-container-intraday {
    background: linear-gradient(135deg, #161b22 0%, #21262d 100%);
    border: 1px solid #30363d;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.graph-container-intraday canvas {
    flex: 1;
    width: 100% !important;
    height: 100% !important;
    max-height: 400px !important;
}

.graph-container-intraday.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999;
    background: #0d1117;
    border-radius: 0;
    padding: 20px;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .no-layout {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .se-layout {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 600px) {
    .dk-layout,
    .no-layout,
    .se-layout {
        grid-template-columns: 1fr;
    }
}