/* Dashboard Specific Styles */
.dashboard-wrapper {
    padding: 20px 40px;
    flex: 1;
}

/* Welcome Section */
.welcome-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.welcome-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--main-text);
    letter-spacing: -0.02em;
}

.welcome-subtitle {
    color: #64748b;
    margin-top: 4px;
    font-size: 16px;
}

.welcome-actions {
    display: flex;
    gap: 12px;
}

.btn-dashboard {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-export {
    background: white;
    border: 1px solid #e2e8f0;
    color: #64748b;
}

.btn-export:hover {
    background: #f8fafc;
}

.btn-new-order {
    background-color: #0ea5e9;
    color: white;
    border: none;
}

.btn-new-order:hover {
    background-color: #0284c7;
}

/* Stats Cards Grid */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.stat-card {
    background: white;
    padding: 24px;
    border-radius: 15px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

.stat-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.stat-icon-bg {
    width: 44px;
    height: 44px;
    background-color: #f0f9ff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trend-badge {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 5px;
}

.trend-up {
    background-color: #f0fdf4;
    color: #22c55e;
}

.trend-urgent {
    background-color: #fffbeb;
    color: #f59e0b;
}

.stat-card-bottom {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--main-text);
}

/* Responsive */
@media (max-width: 768px) {
    .welcome-section {
        flex-direction: column;
        gap: 20px;
    }
    .welcome-actions {
        width: 100%;
    }
    .btn-dashboard {
        flex: 1;
    }
}