html {
    font-size: 14px;
}
header {background-color: #ccc;}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus,
.form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

/* Ensure each card has a bottom margin so it won't overlap footer */
.card {
    margin-bottom: 2rem;
}

/* Smaller max width for the analysis image */
.analysis-img {
    max-width: 200px;
    height: auto;
}
.person-img-thumb {
    width: 30px;
    height: 30px;
    object-fit: cover; /* or "contain", depending on your preference */
    border-radius: 50%; /* if you want a circular thumbnail */
    margin-right: 0.5rem;
}

/* Keep circular thumbnails */
.img-fluid.rounded-circle {
    border: 2px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* For article list items */
.list-group-item a {
    color: #007bff;
}

    .list-group-item a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
