/* LUXURY THEME PROFILE DASHBOARD */

.profile-dashboard-container {
    margin-top: 40px;
    margin-bottom: 50px;
    min-height: 80vh;
}

.stat-box .icon.orange-bg {
    background: #fff3e0;
    color: #f57c00;
}

.stat-box .icon.blue-bg {
    background: #e3f2fd;
    color: #1976d2;
}

.orders-table-wrapper {
    overflow-x: auto;
}

/* Recent Orders Card */
.recent-orders-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin-bottom: 20px;
    border: none;
    background: none;
}

.recent-orders-card .card-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.recent-orders-card .card-header .view-all-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--accent, #222222);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.recent-orders-card .card-header .view-all-link:hover {
    gap: 10px;
}