﻿/* Set padding to keep content from hitting the edges */
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}
.my-pagination {
    display: flex;
    gap: 6px;
    padding-left: 0;
}

    .my-pagination li {
        list-style: none;
    }

        .my-pagination li a {
            display: inline-block;
            padding: 6px 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            text-decoration: none;
            color: #333;
        }

            .my-pagination li a:hover {
                background: #f5f5f5;
            }

        .my-pagination li.active a,
        .my-pagination li.disabled a {
            background: #007bff;
            color: #fff;
            border-color: #007bff;
        }

