﻿/* homepage.css */

/* Navbar branding */
.navbar-brand {
    background: #000;
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-block;
}

    .navbar-brand img {
        background: transparent;
    }

/* Responsive workout cards */
@media (max-width: 768px) {
    .card-header {
        font-size: 0.75rem;
        padding: 0.25rem;
    }

    .card-body {
        padding: 0.25rem;
    }

    .workout-card img {
        max-height: 40px;
        object-fit: contain;
    }

    .workout-card .fw-bold {
        font-size: 0.7rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .workout-card .text-muted {
        font-size: 0.65rem;
    }

    .workout-card {
        margin-bottom: 0.5rem;
    }
}

/* Grid column utility */
.col-1-7 {
    flex: 0 0 calc(100% / 7);
    max-width: calc(100% / 7);
}

/* Logo and footer */
.smarttt-logo {
    max-width: clamp(250px, 25vw, 437px);
    height: auto;
    display: block;
    background: transparent;
}

.footer {
    font-size: 0.75rem;
}

/* Radio button spacing */
input[type="radio"] + label {
    margin-left: 0.5em;
}

/* forum index page main head line*/
.container.my-4 > h1, 
.container.my-4 > h1:focus, 
.container.my-4 > h1:focus-visible{
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

