/* Modern table style: no stripes, no borders, clean look */
.table-modern {
    border: none !important;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.table-modern th {
    border: none !important;
    font-weight: 600;
}

.table-modern td {
    border: none !important;
    background: transparent;
    font-weight: 400;
    vertical-align: middle;
}
.table-modern thead {
    background: #f8f9fa;
}
/* Enhanced table styles for dashboard */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 0;
}
th,
td {
    padding: 0.95rem 1.2rem;
    vertical-align: middle;
    white-space: nowrap;
}
td.expanding-cell {
    min-width: 250px;
    white-space: normal;
    word-wrap: break-word;
    word-break: break-word;
}


/* Dashboard-specific styles for designer dashboard */
.dashboard-main-container {
    min-height: 70vh;
}
.dashboard-header {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 1rem;
}
.dashboard-title {
    font-size: 2rem;
    font-weight: 600;
    color: #222;
}
.dashboard-welcome {
    color: #666;
    font-size: 1.1rem;
}
.dashboard-stats .dashboard-card {
    min-height: 140px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    /* border-radius: 12px; */
    /* background: #fff; */
}

.dashboard-card {
    border: 1px solid var(--border-color);
    height: fit-content;
}

.dashboard-card .card-title {
    font-size: 1.1rem;
    color: #555;
}
/* .dashboard-card .card-text.display-6 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #007bff;
} */

/* .dashboard-card .card-header {
    background: #f5f5f5;
    border-bottom: 1px solid #e5e5e5;
    font-weight: 500;
} */
/* .dashboard-card .card-body {
    padding: 1.2rem 1rem;
}
.dashboard-card .btn {
    min-width: 160px;
}
.dashboard-card .btn + .btn {
    margin-left: 0.5rem;
} */
.dashboard-chart-body {
    height: 400px;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.5rem;
}
.dashboard-chart {
    max-width: 100%;
    display: block;
}
@media (max-width: 767px) {
    .dashboard-stats .dashboard-card {
        min-height: 100px;
    }
    .dashboard-card .card-text.display-6 {
        font-size: 1.5rem;
    }
}
