/* Styles client */
.client-dashboard {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.dashboard-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.dashboard-stat {
    text-align: center;
    padding: 20px;
}

.dashboard-stat .number {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
}

.dashboard-stat .label {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Quick actions */
.quick-action-btn {
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    text-align: center;
    display: block;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.quick-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
}

.quick-action-btn i {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

/* Transaction history */
.transaction-item {
    border-left: 4px solid #007bff;
    padding: 10px 15px;
    margin-bottom: 10px;
    background: white;
    border-radius: 5px;
}

.transaction-item.completed {
    border-left-color: #28a745;
}

.transaction-item.pending {
    border-left-color: #ffc107;
}

.transaction-item.cancelled {
    border-left-color: #dc3545;
}
