/* Illustrated Workout - Custom Styles */

:root {
    --iw-green: #27ae60;
    --iw-green-dark: #1e8449;
    --iw-green-light: #2ecc71;
}

/* Navbar */
.navbar-brand {
    font-size: 1.4rem;
}

/* Cards */
.card {
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);
}

/* Exercise grid cards */
.card-img-top {
    background-color: #f8f9fa;
}

/* Badges */
.badge.bg-outline-secondary {
    background-color: transparent !important;
    border: 1px solid #6c757d;
    color: #6c757d;
}

/* Forms */
.form-control:focus,
.form-select:focus {
    border-color: var(--iw-green);
    box-shadow: 0 0 0 0.2rem rgba(39, 174, 96, 0.25);
}

/* Print styles */
@media print {
    .navbar, footer, .no-print, .alert {
        display: none !important;
    }
    main {
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* Dashboard stats */
.card h3 {
    font-size: 2rem;
    font-weight: 700;
}

/* Table improvements */
.table th {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .table-responsive {
        font-size: 0.85rem;
    }
}
