/* User Dashboard Custom Styles */
body {
    background-color: #f4f7f6;
}
.custom-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s;
}
.custom-card:hover {
    transform: translateY(-5px);
}
.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Light Icon Colors */
.bg-light-orange { background-color: #ffe8d6; color: #f5832e; }
.bg-light-green { background-color: #e5f5e8; color: #28a745; }
.bg-light-blue { background-color: #e3f2fd; color: #0d6efd; }
.bg-light-red { background-color: #ffebee; color: #dc3545; }

/* Gradient Backgrounds */
.bg-grad-orange { background: linear-gradient(135deg, #ff9b44 0%, #fc6076 100%); color: white; }
.bg-grad-cyan { background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%); color: white; }
.bg-grad-dark { background: linear-gradient(135deg, #2b32b2 0%, #1488cc 100%); color: white; }
.bg-grad-green { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); color: white; }

.cardLabel { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.8; }
.cardValue { font-size: 1.6rem; font-weight: 700; margin-bottom: 0; }

.colored-card-icon {
    font-size: 2.5rem;
    opacity: 0.4;
}
