﻿/* General body content */
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Prevent truncation in description lists */
.dl-horizontal dt {
    white-space: normal;
}

/* Limit form input widths */
input,
select,
textarea {
    max-width: 280px;
}

/* Scrollable image gallery */
.scroll-gallery {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 0;
    scroll-behavior: smooth;
    background: lightblue;
}

    .scroll-gallery img {
        flex: 0 0 auto;
        width: 250px;
        height: auto;
        border-radius: 5px;
    }

/* Card styling */
.card {
    padding: 20px;
    margin: 0 auto;
}

/* Responsive tweaks for mobile */
@media (max-width: 576px) {
    .card {
        margin: 10px;
        padding: 15px;
    }
}
