/*
 * █████       █████   ███   █████ ██████████
 *░░███       ░░███   ░███  ░░███ ░░███░░░░███
 * ░███        ░███   ░███   ░███  ░███   ░░███
 * ░███        ░███   ░███   ░███  ░███    ░███
 * ░███        ░░███  █████  ███   ░███    ░███
 * ░███      █  ░░░█████░█████░    ░███    ███
 * ███████████    ░░███ ░░███      ██████████
 *░░░░░░░░░░░      ░░░   ░░░      ░░░░░░░░░░
 *           Lime Web Development
 *         lwd.rocks || hello@lwd.rocks
 */

/* montserrat-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/montserrat-v31-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url('/fonts/montserrat-v31-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-900 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 900;
    src: url('/fonts/montserrat-v31-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


* {
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #f8f8f8;
}

a {
    color: #00539e;
    text-decoration: none;
}

.nav-link {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    color: #00539e;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 3px solid transparent;
    transition: border-color 0.2s ease;
}

.nav-link:hover {
    border-bottom-color: #00539e;
}

.nav-link-active {
    border-bottom-color: #00539e;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #00539e;
}

.btn-link {
    color: #00539e;
}

.bg-info {
    background-color: #92b6d6 !important;
}

.border-primary {
    border-color: #00539e !important;
}

.bg-primary {
    background-color: #00539e !important;
}

.btn-primary {
    background-color: #00539e;
    border-color: #00539e;
}

.fw-boldest {
    font-weight: 900;
}

.text-primary {
    color: #00539e !important;
}

.navbar-brand img {
    height: 60px;
}

blockquote {
    font-size: 1rem !important;
}

.table-responsive {
    overflow: visible !important;

    .table-wrapper {
        overflow-x: auto;
    }
}

.card-header {
    font-weight: 700;
}

.pagination .active {
    --bs-pagination-active-bg: #00539e !important;
    --bs-pagination-border-color: #00539e !important;
    --bs-pagination-active-border-color: #00539e !important;
}

.page-link {
    color: #00539e;
}

/* Multi-select */
select[multiple] {
    padding: 0.5rem;
}

select[multiple] option {
    padding: 0.5rem 0.5rem;
}

/* Tom Select Overrides */
.ts-wrapper {
    position: relative !important;
}

.ts-dropdown {
    z-index: 1050 !important;
}

/* Radio and Checkbox Styling */
.form-check-input:checked {
    background-color: #00539e;
    border-color: #00539e;
}

.form-check-input:focus {
    border-color: #00539e;
    box-shadow: 0 0 0 0.25rem rgba(0, 83, 158, 0.25);
}

/* Comments Styling */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comment-item {
    background: #f8f9fa;
    border-left: 3px solid #00539e;
    border-radius: 0.5rem;
    padding: 1rem;
}

.comment-header {
    align-items: center;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
}

.comment-author {
    color: #212529;
    font-weight: 600;
}

.comment-date {
    font-size: 0.875rem;
}

.comment-body {
    color: #495057;
    line-height: 1.6;
    word-wrap: break-word;
}

