* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow: hidden;
}

#map {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}

.info-banner {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    font-size: 14px;
    text-align: center;
    max-width: 90%;
}

.loading {
    color: #2563eb;
    font-weight: 500;
}

.error {
    color: #dc2626;
    font-weight: 500;
}

.instructions {
    color: #059669;
    font-weight: 500;
}

.faded {
    opacity: 0;
    transition: opacity 2s;
}

.about-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease;
}
.about-button:hover {
    transform: scale(1.1);
}

.owl-image {
    width: 80px;
    height: auto;
    display: block;
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.5));
}
.about-container {
    position: fixed;
    top: 0px;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 400;
}
.button-container {
    z-index: 400;
    bottom: 0;
    left: 5px;
    position: fixed;
    display: flex;
    gap: 15px;
}
.button-container button {
    background: none;
    border: none;
}
.button-image {
    width: 40px;
    height: auto;
    background: none;
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.5));
}

.about-text {
    color: #bf5107;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    margin-top: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#qrDisplayContainer, #aboutContent {
    width: 100vw;
    height: 100vh;
    background: transparent;
    z-index: 600;
    position: relative;
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;    /* Centers vertically */
}
#qrDisplay, .about-display {
    background: white;
    position: relative;
}
#qrDisplay {
    width: 300px;
    height: 300px;
}
.about-display {
    width: 350px;
    margin: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}
.about-display > * {
    margin: 10px;
}
blockquote {
    padding: 15px;
}
.about-display ul {
    margin-left: 20px;
}
.hidden {
    display: none !important;
}
