body {
    font-family: 'Noto', sans-serif;
    background-color: #040404;
    color: #ffffff;
    text-align: center;
    margin: 0;
    padding: 20px;
}

.title-box {
    background-color: #f02213;
    color: white;
    padding: 0.1px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: 400;
}

.waiting-times-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.themed-area {
    flex: 1 1 calc(50% - 20px); 
    margin: 10px;
    text-align: left; 
}

@media (max-width: 768px) {
    .themed-area {
        flex: 1 1 100%; 
    }
}

.themed-area h2 {
    color: hsl(45, 100%, 66%); 
    font-size: 24px; 
    margin-bottom: 10px; 
}

.ride-time {
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ride-name {
    font-size: 1.3em; 
    margin-left: 10px;
    flex-grow: 1;
    text-align: left;
}

.waiting-time {
    font-weight: bold;
    font-size: 1.75em;
}

.circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 35px;
    margin-right: 10px;
    font-weight: bold;
}

.Berlin .circle { background-color: #eb5433; color: white; }
.Mexico .circle { background-color: #2376C4; color: white; }
.Africa .circle { background-color: #C18234; color: rgb(255, 255, 255); } 
.Mystery .circle { background-color: #914E65; color: white; }
.Chinatown .circle { background-color: #961919; color: white; }
.Fantasy .circle { background-color: #3D8953; color: white; }

.ride-time:nth-child(even) {
    background-color: #222;
}

.modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.modal-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.loader {
    border: 16px solid #ffffff; 
    border-top: 16px solid #000000; 
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    margin: auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.maintenance-message {
    font-size: 2em;
    text-align: center;
}

p {
    font-size: 1.0em;
    font-family: "Comfortaa";
    margin: 10px 0;
    color: #ffffff;
    text-decoration: none;
   
}

a {
    font-size: 1.0em;
    font-family: "Comfortaa";
    margin: 10px 0;
    color: #ffffff;
   
   
}
