/* Admin Dashboard Styles */

/* Stat Cards */
.stat-card {
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f5f7fa 0%, #fff 100%);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.stat-icon {
    font-size: 2rem;
    opacity: 0.8;
}

/* Colored Border Left Cards */
.card {
    border: none;
    border-radius: 8px;
}

/* Cards com bordas laterais coloridas */
.card[style*="border-left: 4px solid"] {
    border-left: 4px solid;
}

/* Progress bar gradient */
.progress {
    background-color: #e9ecef;
    border-radius: 10px;
}

.progress-bar {
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* Text end utility for tablets and up */
@media (max-width: 768px) {
    .text-md-end {
        text-align: left !important;
    }
}

@media (min-width: 769px) {
    .text-md-end {
        text-align: right !important;
    }
}

/* Hero section */
.hero {
    margin: -1.5rem -1.5rem 2rem -1.5rem;
    padding: 40px !important;
    color: white;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero .lead {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .stat-icon {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
}
