﻿/* Customize the carousel transition */
.carousel-inner {
    transition: transform 15s ease-in-out !important; /* Adjust the transition duration and timing function as needed */
}

.officer-name {
    color: #7f8182 !important;
}

.officer-name-white {
    color: #dedcdc !important;
}

.card-body-custom {
    font-size: 16px;
    background-color: white !important;
    color: #3f3f40 !important;
}


.white-background {
    background-color: white !important
}

.card {
    background-color: white !important;
}

ul {
    list-style-type: none;
}

hr.style14 {
    border: 0;
    height: 1px;
    background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
}

.fixed-bottom-div {
    position: fixed;
    text-align: center;
    bottom: 0;
    font-size: 9px;
    width: 100%;
    color: #3f3f40; /* Example text color */
    padding: 0px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for visual separation */
}

/* Additions Made by Jack... */

.modal-content {
    display: block !important; /* Ensure modal content is displayed as block */
    width: 100% !important; /* Make sure modal content takes the full width */
}

.modal-header, .modal-body {
    display: block !important; /* Ensure the header and body stack vertically */
}

.modal-body {
    font-size: 1.5rem !important;
}

.custom-modal {
    width: 75vw !important;
    max-width: 75vw !important;
}

.LargeJournalText {
    font-size: 1.5rem !important;
}

.LargeJournalHeader {
    font-size: 2.5rem !important;
}

.image-container {
    position: relative;
    width: 100%;
    padding-top: 90%; /* to control aspect ratio (height/width * 100) | 100% = a perfect square. Lower percentages are horizontal rectangles */
    overflow: hidden;
}

    .image-container img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 50% 5%; /* First % controls where the image is placed horizontally... 50% = center. Second % controls where the image is placed vertically... 5% = 5% down from the top. */
    }
