/* Digitalzila User Dashboard Styles */
.dz-ud-container {
    max-width: 1000px;
    margin: 20px auto;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}
.dz-ud-header {
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}
.dz-ud-header h2 {
    margin: 0;
    font-size: 28px;
}
.dz-ud-header p {
    margin: 5px 0 0;
    font-size: 16px;
}
.dz-ud-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.dz-ud-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 20px;
    text-align: center;
    transition: transform 0.2s;
}
.dz-ud-card:hover {
    transform: translateY(-4px);
}
.dz-ud-card i {
    font-size: 28px;
    color: #1976d2;
    margin-bottom: 10px;
}
.dz-ud-card h3 {
    margin: 10px 0;
    font-size: 20px;
    color: #333;
}
.dz-ud-card p, .dz-ud-card a {
    font-size: 14px;
    color: #555;
}
.dz-ud-orders {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    text-align: left;
}
.dz-ud-orders li {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}
