body {
    font-family: "Poppins", sans-serif;
    max-width: 100vw;
    max-height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.btn-outline-primary {
    --bs-btn-font-weight: bold;
    --bs-btn-border-width: 2px;
    --bs-btn-color: #33272a;
    --bs-btn-bg: #fffffe;
    --bs-btn-border-color: #33272a;
    --bs-btn-hover-color: #33272a;
    --bs-btn-hover-bg: #fffffe;
    --bs-btn-hover-border-color: #33272a;
    --bs-btn-active-color: #fffffe;
    --bs-btn-active-bg: #33272a;
    --bs-btn-active-border-color: transparent;
    --bs-btn-active-shadow: none;
    --bs-gradient: none;
}

.btn-primary {
    margin-top: 0.75rem;
    font-weight: bold;
    color: #fffffe;
    background-color: #ff8ba7;
    border: none;
    --bs-btn-hover-color: #fffffe;
    --bs-btn-hover-bg: #ff8ba7;
    --bs-btn-hover-border-color: none;
    --bs-btn-focus-shadow-rgb: #ff8ba7;
    --bs-btn-active-color: #fffffe;
    --bs-btn-active-bg: #594a4e;
    --bs-btn-active-border-color: none;
}

.accordion {
    --bs-accordion-border-width: 2px;
    --bs-accordion-border-color: #33272a;
    --bs-accordion-color: #33272a;
    --bs-accordion-bg: #fffffe;
    --bs-accordion-btn-color: #33272a;
    --bs-accordion-active-color: #33272a;
    --bs-accordion-active-bg: #ff8ba7;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    --bs-accordion-icon-color: #33272a;
    --bs-accordion-icon-active-color: #33272a;
    --bs-accordion-btn-padding-x: 1rem;
    --bs-accordion-btn-icon-width: 1rem;
    --bs-accordion-body-padding-x: 1rem;
}

.modal {
    --bs-modal-color: #594a4e;
    --bs-modal-bg: #faeee7;
    --bs-modal-border-color: #594a4e;
    --bs-modal-border-width: 2px;
    --bs-modal-header-border-color: #594a4e;
    --bs-modal-header-border-width: 2px;
    --bs-modal-footer-border-color: #594a4e;
    --bs-modal-footer-border-width: 2px;
}

.modal-body img {
    margin-bottom: 0.75rem;
}

.badge {
    vertical-align: text-top;
}

.badge.text-bg-secondary {
    background-color: silver !important;
}

h5.modal-title {
    font-size: 1rem;
}

.title {
    padding-bottom: 1rem;
    color: #33272a;
}

h5.card-title {
    font-size: 1.5rem;
}

h6.card-subtitle {
    font-size: 1rem;
}


#landmark-map {
    width: 100vw;
    height: 100vh;
}

.navbar {
    --bs-navbar-padding-y: 0.5rem;
    --bs-navbar-toggler-padding-x: 0rem;
    --bs-navbar-toggler-font-size: 1rem;
}

.navbar-dark {
    --bs-navbar-toggler-border-color: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-brand {
    display: flex;
    width: 100%;
}

#sidebar {
    background-color: transparent;
    width: 360px;
    position: absolute;
    padding-top: 12px;
    z-index: 1000;
}

@media (max-width: 430px) {
    #sidebar {
        width: 100%;
    }
}

p.d-inline-flex.gap-1{
    margin-bottom: 0;
}

#toggle {
    width: 360px;
}

#toolbar {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    gap: 10px;
}

@media (max-width: 375px) {
    .btn {
        --bs-btn-font-size: 0.8rem;
    }
    .btn svg {
        width: 0.8rem;
        height: 0.8rem;
    }
}

.tooltip {
    position: absolute;
    width: auto;
    height: auto;
    border-radius: 5px;
    pointer-events: none;
    border: 2px solid #594a4e;
    max-width: 340px;
    padding: 18px;
    background-color: #faeee7;
    color: #594a4e;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

.tooltip img {
    margin-bottom: 0.75rem;
}

#title {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

/* toggle */
.btn-group-vertical {
    padding-right: 0px;
    padding-left: 0px;
}

.emoji-icon-1 img {
    width: 18px;
    height: 18px;
}

.emoji-icon-2 {
    font-size: 20px;
    line-height: 1;
    text-align: center;
}

#collapseOne img {
    width: 150px;
    padding: 0px;
    border: #33272a solid 2px;
}

.bounce img {
    transform-origin: 50% 100%;
    animation: bounce-animation 2s ease infinite;
}

@keyframes bounce-animation {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-30px);}
    60% {transform: translateY(-15px);}
}

.modal-body img {
    width: 100%;
}

.highlight {
    font-weight: bold;
    color: #ff8ba7;
}


