/* Tables layout */
.tables-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.table-container {
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .table-container {
        flex: 0 0 49%;
    }
}

/* Dashboard layout */
.screen-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 768px) {
    .screen-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

/* Charts */
.charts-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .charts-wrapper {
        grid-template-columns: 2fr 1fr;
    }
}

.chart-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.chart-card canvas {
    width: 100% !important;
    height: 250px !important;
}