@font-face {
    font-family: 'Space';
    src: url('space age.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'ariel', Arial, sans-serif;
    background: rgba(0, 0, 0, 0.95);
    color: rgba(255, 255, 255, 0.9);
    background-image: url('bg.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}

.sidebar {
    font-family: space;
    width: 250px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: absolute;
    left: -250px;
    height: 100%;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
}

.sidebar:hover {
    left: 0;
}

.sidebar a {
    text-decoration: none;
    color: white;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.sidebar a:hover {
    background: rgba(255, 255, 255, 0.3);
}

#image-map-container {
    width: 100%;
    max-width: 1000px;
    display: none;
}

#question-panel {
    width: 550px;
    height: 750px;
    color: black;
    max-width: 550px;
    margin-top: 20px;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    font-size: 15px;
    display: none;
    font-family: 'ariel', Arial, sans-serif;
    -webkit-print-color-adjust: exact;
print-color-adjust: exact;
}

.content-panel {
    width: 50%;
    height: 50%;
    padding: 20px;
    color: black;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin: auto;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.content-panel.active {
    display: flex;
}

.content {
    display: none;
}

.content.active {
    display: block;
}

.estimateoutput {
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
    text-align: center;
    color: #007bff;
    cursor: help;
    transition: color 0.3s ease;
    display: none;
}

h1, h2, h3 {
    font-family: 'Space', sans-serif;
    letter-spacing: 2px;
    font-size: 24px;
}

.glow {
  text-shadow:
    0 0 5px #ffffff,
    0 0 10px #1f8fff,
    0 0 15px #1f8fff,
    0 0 20px #1f8fff;
  color: #ffffff;
}
