/* Option 2: Import via CSS */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

body {
    font-family: -apple-system,"system-ui","Segoe UI",sans-serif;
}
.notice {
    font-size: .7rem;
}

#prevPhotoBtn, #nextPhotoBtn {
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.3;
    pointer-events: auto;
}

#prevPhotoBtn:hover, #nextPhotoBtn:hover {
    opacity: 1;
    transform: scale(1.2);
}

.hotspot {
    position: absolute;
    cursor: pointer;
    font-size: 1.5rem;
    transition: transform 0.2s, filter 0.2s;
    /* filter: grayscale(100%); */
    transform: translate(-50%, -50%);
    pointer-events: auto;
    outline: none;
    -webkit-tap-highlight-color: transparent; /* For iOS Safari */
    -webkit-touch-callout: none; /* For iOS Safari */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE/Edge */
    user-select: none; /* Standard syntax */
    padding: 0;
    margin: 0;
}

.hotspot-icon {
    font-size: 1.5rem;
    color: #dc3545 !important;
    vertical-align: middle;
    border-radius: 50%;
    transition: box-shadow 0.2s, font-size 0.2s ease;
    padding: 0;
    margin: 0;
}
.hotspot:hover .hotspot-icon,
.hotspot:active .hotspot-icon,
.hotspot:focus .hotspot-icon,
.hotspot.active .hotspot-icon {
    filter: drop-shadow(0 0 12px rgba(8, 0, 255, 0.9)) drop-shadow(0 0 8px rgba(8, 0, 255, 0.9)) drop-shadow(0 0 4px rgba(8, 0, 255, 0.9));
    outline: none;
    border-radius: 50%;
    font-size: 2rem;
}

.authorCredits {
    padding: 0.2rem 0.5rem;
}

.img-fluid {
    transition: opacity 0.2s;
}
.img-fluid:hover {
    opacity: 0.75;
}

.top-25 {
    top: 25% !important;
}

.top-75 {
    top: 75% !important;
}

.progress, .progress-stacked {
    --bs-progress-height: .5rem;
}

.fs-answer {
    font-size: 3rem;
}

/* Mobile screens */
/* @media (max-width: 767.98px) {
    .photo-container {
        height: 80vh;
    }
} */