/********** Template CSS **********/
/* 
Blue: #1A2F4A (Keep this)
Rust: #A65A3A
*/
:root {
    --deepblue: #1A2F4A;
    --rust: #A65A3A;
    --black: #000000;
    --white: #ffffff;
    --borderclr: #ecf0f1;
    --ratingclr:#ffc107;
    --red: #ef4444;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 3px;
    bottom: 1px;
    z-index: 99;
    border-color: 1px solid var(--rust);
}
.back-to-top i {
    color: var(--white);
}
.back-to-top:hover {
    border-color: var(--white);
    background-color: var(--deepblue);
}
/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}
.btn_view {
    background: var(--rust);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}
.btn_view:hover {
    background: var(--deepblue);
    color: var(--white);
}
.btn.btn-hk2trek,
.btn.btn-hk2trek,
.bg-hk2trek {
    color: var(--white);
    background-color: var(--rust);
}
.btn.btn-hk2trek:hover,
.btn.btn-hk2trek:hover {
    color: var(--white);
    background-color: var(--deepblue);
}
.btn-square {
    width: 33px;
    height: 33px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--white);
    border-color: var(--rust);
}

.btn-outline-body:hover {
    color: var(--white);
    border-color: var(--white);
}
.navbar .navbar-toggler {
    border: 1px solid var(--deepblue);
}
.navbar .navbar-toggler .navbar-toggler-icon {
    color: var(--rust);
}
button:focus:not(:focus-visible) {
    color: transparent;
}
/* Carousel slider css */
/* Set a fixed height for each slide (adjust as needed) */
.owl-carousel .owl-carousel-item, .header-carousel .owl-item {
    height: 600px;
}
/* Make the image fill its container and cover the area */
.slider-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the area without stretching */
    object-position: center; /* Centers the image (optional) */
}

/* If you want the slide container to always fill the viewport width */
.header-carousel .owl-carousel-item {
    width: 100vw;
}
.header-carousel .owl-carousel .owl-item {
    height: 100vh;
}
/* End Carousel slider css */
/* top bar */
.dropdown-item {
    color: var(--black);
}
.dropdown-item:hover, .dropdown-item:focus {
    color: var(--white);
    background-color: var(--deepblue);
}
.bg-top, .bg-footer {
    background-color: var(--deepblue);
}
.text-bdy {
color: var(--white);
}
.text-bdy:hover {
color: var(--white);
}
/* End top bar */
/*** Navbar ***/
.navbar-brand img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 21px 0;
    color: var(--black);
    font-weight: 500;
    outline: none;
}
.btn-check:focus+.btn, .btn:focus {
    box-shadow: none;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--rust);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .3);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--black);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
    border: 1px solid var(--white);
}

.page-header {
    background-color: var(--black);
}
.page-header nav .breadcrumb li.breadcrumb-item+.breadcrumb-item::before {
    color: var(--white);
}
.page-header nav .breadcrumb li.breadcrumb-item.active {
    color: var(--rust);
}
/*** Section Title ***/
.header-hk2trek .section-title, .section-title .sub-title, .cnt-us .section-title {
    color: var(--rust);
    letter-spacing: 5px;
    text-transform: uppercase;
}
.header-hk2trek  p {
    color: var(--black);
}
/*** Facts ***/
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}

.fact-item:hover .fact-icon {
    background: var(--deepblue);
}

.fact-item .fact-icon i {
    color: var(--rust);
    transition: .5;
}

.fact-item:hover .fact-icon i {
    color: var(--white);
}

/*** About & Feature ***/
.about-hk2trek .section-title, .wychsus-hk2trek .section-title, .bookfrmhme-hk2trek .section-title {
    color: var(--rust);
}
.about-hk2trek .display-5, .wychsus-hk2trek .display-5, .cnt-us .display-5 {
    color: var(--black);
}
.border-abt {
    border: 1px solid var(--rust);
}
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--rust);
    z-index: -1;
}

/*** Team ***/
.team-items {
    margin: -.75rem;
}
.team-item {
    padding: .75rem;
}
.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--deepblue);
}
.team-img-cntnr {
    position: relative;
    overflow: hidden;
    height: 173px;
    min-height: 173px;
    background-color: #f5f5f5; /* Placeholder color */
}
.team-img-cntnr img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--deepblue);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--rust);
}
.form-contact .Input_field {
    color: var(--black);
    border: 1px solid var(--black);
}
.cntfrm h2 {
    color: var(--deepblue);
}
.cntfrm h4 {
    color: var(--black);
}
.bookfrmhme-hk2trek a i, .cnt-us a i {
    color: var(--rust);
}
.bookfrmhme-hk2trek p, .cnt-us a p {
    color: var(--black);
}
.bookfrmhme-hk2trek h3 a, .cnt-us a h3 {
    color: var(--rust);
}
.bookfrmhme-hk2trek a i:hover, .cnt-us a i:hover, .bookfrmhme-hk2trek h3 a:hover, .cnt-us a h3:hover {
    color: var(--deepblue);
}
/* Team  */
.team-item .nme {
    color: var(--deepblue);
}
.designation {
    color: var(--rust);
} 
.team-description {
    line-height: 1.6;
}
.read-more-btn {
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    display: inline-block;
    color: var(--black);
}
.read-more-btn:hover {
    color: var(--rust);
}
/*** Testimonial ***/
.testimonial-carousel .testimonial-item span {
    color: var(--black);
}
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    background: var(--white);
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
    color: var(--rust);
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}
/* Testimonial Carousel Container - Make sure it has position relative */
.testimonial-carousel {
    position: relative;
    margin: 0 auto;
    padding: 0 40px; /* Add padding to make space for outside arrows */
} 

/* Owl Nav positioned outside */
.testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -17px; /* Move left arrow outside */
    width: calc(100% + 35px); /* Extend width to cover outside area */
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}
@media (max-width: 768px) {
.testimonial-carousel .owl-nav .owl-prev, .testimonial-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
}
.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    left: 4px;
    margin: 0 3px;
    transition: .5s;
}
}
/*** Footer ***/
.footer p a {
    color: var(--white);
}
.footer p a:hover {
    text-decoration: underline;
    text-decoration-color: var(--rust);
}
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--white);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}
.footer .btn.btn-link:hover {
    text-decoration: underline;
    text-decoration-color: var(--rust);
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--white);
}

.footer .copyright a:hover {
    text-decoration: underline;
    text-decoration-color: var(--rust);
}
.footer .border-bottom {
border-bottom: 1px solid var(--rust);
}

/* tour packages and owl carousel css */
/* Owl Carousel Navigation Arrows */
.owl-nav {
    position: absolute;
    top: 43%;
	left: 9px;
    width: calc(100% + -18px);
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none; /* allows clicking through the container to the buttons */
    z-index: 10;
}
.owl-nav .owl-prev, .owl-nav .owl-next {
    pointer-events: auto; /* re-enable clicks on buttons */
    background: #fff !important;
    color: #333 !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    font-size: 20px;
    transition: all 0.3s;
    border: none;
    outline: none;
     /* Center the icon inside the circle */
    display: flex;
    align-items: center;
    justify-content: center;
}
.owl-nav .owl-prev:hover {
    background: #ff6b6b !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(255,107,107,0.4);
}
/* Position arrows half outside the carousel */
#package-carousel .owl-nav .owl-prev, #tours-carousel .owl-nav .owl-prev {
    margin-left: -25px; /* Half of button width (50px) */
}

#package-carousel .owl-nav .owl-next, #tours-carousel .owl-nav .owl-next {
    margin-right: -25px;
}
@media (max-width: 768px) {
    #package-carousel .owl-nav .owl-prev, #tours-carousel .owl-nav .owl-prev {
        margin-left: -15px;
    }
    #package-carousel .owl-nav .owl-next, #tours-carousel .owl-nav .owl-next {
        margin-right: -15px;
    }
}
/* Ensure the carousel items have equal height */
#package-carousel .item {
    height: auto;
}
#package-carousel .single_tour_card {
    height: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

#package-carousel .tour_info {
    flex-grow: 1;
}
/* Modern Card Styling – you can move this to your theme's CSS file */
.popular_places_area {
    padding: 80px 0;
}

.single_tour_card {
    background: #fff;
    min-height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}
.single_tour_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.tour_thumb {
    position: relative;
    overflow: hidden;
    height: 240px;
}
.tour_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.single_tour_card:hover .tour_thumb img {
    transform: scale(1.05);
}
.tour_duration {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--deepblue);
    color: var(--white);
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}
.tour_price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--deepblue);
    color: var(--white);
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(255,107,107,0.3);
}

.tour_info {
    padding: 15px;
}
.tour_info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}
.tour_info h3 a {
    color: var(--deepblue);
    text-decoration: none;
}
.tour_info h3 a:hover {
    color: var(--rust);
}
.tour_info p {
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.6;
}
.tour_meta {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--black);
}
.tour_meta span i {
    margin-right: 5px;
    color: var(--rust);
}
.tour_footer {
    border-top: 1px solid var(--borderclr);
    padding-top: 20px;
}
.rating {
    color: var(--black);
    font-size: 14px;
}
.rating i {
    color: var(--ratingclr);
}
.ftr .rating {
    color: var(--white);
    font-size: 14px;
}
.section_title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}
.section_title p {
    font-size: 18px;
    color: var(--black);
}
.bradcam_area {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}
.bradcam_area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: -1;
}
.bradcam_text h1 {
    font-size: 60px;
    color: #fff;
    font-weight: 700;
}
/* End Tour packages and owl carousel css */
/* Fix for Google Translate banner */
.goog-te-banner-frame,
.goog-te-menu-frame,
.goog-te-spinner,
iframe[src*="translate.google"] {
    z-index: -1 !important;
    display: none !important;
}

/* Ensure body stays normal */
body {
    top: 0 !important;
    position: static !important;
    z-index: auto !important;
}

/* Keep our language selector on top */
.dropdown,
.ms-2.ms-md-3.dropdown {
    z-index: 10001 !important;
    position: relative;
}
/* Hide Google Translate attribution and any floating elements */
.goog-logo-link,
.goog-te-gadget span,
.goog-te-gadget img,
.goog-te-gadget-simple img,
.goog-te-gadget-simple span,
div[style*="translate.googleapis.com"] img,
div[style*="translate.googleapis.com"] span,
a[href*="translate.google.com"] {
    display: none !important;
}

/* Prevent any spacing issues */
html {
    overflow-y: scroll !important; /* Prevent layout shift */
}

/* Force body to stay at top */
body {
    top: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Hide the Google Translate toolbar completely */
.skiptranslate,
.skiptranslate iframe,
.skiptranslate *,
.goog-te-banner-frame.skiptranslate {
    display: none !important;
    height: 0 !important;
    visibility: hidden !important;
}
/* Prevent Google Translate from translating language selector */
.notranslate,
.dropdown,
.dropdown *,
#languageDropdown,
#languageDropdown *,
#currentLang,
#currentLangShort,
.dropdown-toggle,
.dropdown-menu,
.dropdown-item {
    -webkit-translate: none !important;
    translate: none !important;
    -webkit-translation: none !important;
    translation: none !important;
}
/* Search Modal Styles */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.search-modal-content {
    background-color: #ffffff;
    width: 90%;
    max-width: 650px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease-in-out;
    overflow: hidden;
}

.search-modal-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, #1A2F4A 0%, #1a2f4a 100%);
    border-bottom: 3px solid #A65A3A;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-modal-title {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.search-modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.search-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.search-modal-body {
    padding: 40px 30px;
}

.search-input-group {
    margin-bottom: 25px;
}

.search-wrapper {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #A65A3A;
    font-size: 18px;
    pointer-events: none;
    z-index: 1;
    transition: all 0.3s ease;
}

.search-input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.search-input:focus {
    border-color: #A65A3A;
    box-shadow: 0 0 0 3px rgba(166, 90, 58, 0.1);
}

.search-input:focus + .search-icon {
    color: #1A2F4A;
    transform: translateY(-50%) scale(1.1);
}

/* Search Suggestions */
.search-suggestions {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.suggestions-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.suggestions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.suggestion-tag {
    padding: 8px 16px;
    background-color: #f5f5f5;
    color: #1A2F4A;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.suggestion-tag:hover {
    background-color: #A65A3A;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .search-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .search-modal-header {
        padding: 20px;
    }
    
    .search-modal-title {
        font-size: 20px;
    }
    
    .search-modal-body {
        padding: 25px 20px;
    }
    
    .suggestions-list {
        gap: 8px;
    }
    
    .suggestion-tag {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .search-input {
        padding: 15px 15px 15px 45px;
        font-size: 16px;
    }
    
    .search-icon {
        left: 12px;
        font-size: 16px;
    }
}
/* Navbar Search Icon */
.navbar .btn-link.nav-link {
    color: #A65A3A;
    transition: all 0.3s ease;
}

.navbar .btn-link.nav-link:hover {
    color: #1A2F4A;
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .navbar .btn-link.nav-link {
        margin: 10px 0;
        display: inline-block;
        width: auto;
    }
}
#datapostfetch {
    display: inline-grid;
}
#datapostfetch a {
    padding: 2px;
}
/* Fix datetimepicker positioning */
#preferred_date_wrapper {
    position: relative;
}
