  /* Dashboard Styles */
.main-account-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    margin: 0 auto;
}
.dashboard-title{
    color: white;
    font-size: 32px;
    font-weight: 600;
    padding: 20px 80px;
    margin-top: 0;
    border-bottom: 1px solid #eee;
    background-color: #005959;
 
}
.myaccount-wrapper{
    padding: 50px 80px 80px 80px;
    background-image: url('https://lieferfair-prod-staging.azurewebsites.net/wp-content/uploads/2025/03/Pattern-Bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
}
.dashboard-welcome {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.welcome-text h1 {
    font-size: 28px;
    margin: 0 0 10px 0;
    color: #333;
}

.welcome-text p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.dashboard-actions {
    display: flex;
    gap: 15px;
}

.action-button {
    background-color: #005959;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.action-button:hover {
    background-color: #003232;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 112, 67, 0.2);
    color: white;
}

.action-button.secondary {
    background-color: #F5F5F5;
    color: #555;
}

.action-button.secondary:hover {
    background-color: #EEEEEE;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    color: #333;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    
}

.dashboard-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.dashboard-card h2 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
}

.dashboard-card h2 svg {
    margin-right: 10px;
    color: #005959;
}

.dashboard-card-content {
    color: #555;
    font-size: 14px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 500;
    color: #777;
}

.info-value {
    font-weight: 500;
    color: #333;
}

.recent-orders-table {
    width: 100%;
    border-collapse: collapse;
}

.recent-orders-table th {
    text-align: left;
    padding: 10px;
    color: #777;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.recent-orders-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #f0f0f0;
}

.recent-orders-table tr:last-child td {
    border-bottom: none;
}

.order-number a {
    color: #005959;
    font-weight: 600;
    text-decoration: none;
}

.order-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.order-status.processing {
    background-color: #E3F2FD;
    color: #1E88E5;
}

.order-status.completed {
    background-color: #E8F5E9;
    color: #43A047;
}

.order-status.on-hold {
    background-color: #FFF8E1;
    color: #FFB300;
}

.dashboard-card-footer {
    margin-top: 15px;
    text-align: right;
}

.dashboard-card-link {
    color: #005959;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.dashboard-card-link:hover {
    text-decoration: underline;
}

.dashboard-card-link svg {
    width: 16px;
    height: 16px;
    margin-left: 5px;
}

.quick-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 89, 89, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.stat-icon svg {
    color: #005959;
}

.stat-info h3 {
    font-size: 24px;
    margin: 0 0 5px 0;
    color: #333;
}

.stat-info span {
    font-size: 14px;
    color: #777;
}

@media (max-width: 768px) {
    .myaccount-wrapper{
        padding: 20px 20px 40px 20px !important;
        
    }
    .dashboard-welcome {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .dashboard-actions {
        margin-top: 20px;
        width: 100%;
    }
    
    .action-button {
        flex: 1;
        text-align: center;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-stats {
        flex-direction: column;
    }
    .dashboard-title{
        color: #222222;
        font-size: 24px;
        padding: 20px 40px;
        background-color: #EEEEEE;
     
    }
}

