/* Main Styles */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Card Hover Effects */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Form Styling */
.form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Feature Icons */
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
}

/* Dashboard Specific Styles */
.stat-card {
    border-radius: 0.5rem;
}

.stat-card i {
    opacity: 0.8;
}

/* Custom button styles */
.btn-outline-primary, .btn-outline-success {
    border-width: 2px;
}

/* Footer styling */
footer {
    background-color: var(--bs-dark);
    color: var(--bs-light);
}

/* Progress chart enhancements */
.chart-container {
    margin-bottom: 1rem;
}

/* Alert animations */
.alert {
    animation: fadeInDown 0.5s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsiveness tweaks */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
}
