/* styles.css */

/* Base styles (already included in your CSS) */
/* Include universal box-sizing */
*, *:before, *:after {
    box-sizing: border-box;
}

body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    overflow: hidden;
    background-color: #125479;
    touch-action: manipulation;
}

#game-container {
    width: 90%;
    max-width: 600px;
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content:  flex-start;
    height: -webkit-fill-available;
    height: inherit;
    top: 240px;
}

#clouds{
    height: -webkit-fill-available;
    height: inherit;
}

#aircraft{
    height: -webkit-fill-available;
    height: inherit;
}

#fullGUI{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: auto;
    width: 95%;
    justify-content: center;
    padding-top: 30px;

}

.osd{
    padding: 30px;
}

#header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #eee;
    border-bottom: 2px solid #333;

}

#title {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: rgba(238, 238, 238, 0.2);
    border-bottom: 2px solid #333;
    place-content: center;
    background-size: contain;
    background-position: center;
    background-repeat: repeat-x;
    height:107px;
    background-image: url("./images/title.png");

}

.highlight {
    background-color: yellow; /* Choose a suitable highlight color */
}

@keyframes scrollBackground {
    0% { background-position: 512px 0; }
    100% { background-position: 512px 2048px; }

}

.seat{
    padding: 3px;
    border-radius: 22px;
    background-color: rgba(255, 130, 87, 0.65);
    color: #ffffff;
    font-weight: bold;
    margin: 2px;
}

#game-board {
    position: relative;
    height: 800px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    margin-bottom: 100px;
}

#timer, #score, #strikes {
    font-size: 16px;
    font-weight: bold;
}

#timer {
    color: #d9534f;
}

#score {
    color: #5cb85c;
}

#strikes {
    color: #f0ad4e;
}

#requests{
    padding: 0px 20px 0px 20px;
    /*background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(180, 217, 234, 0.94));*/
    background-image: linear-gradient(180deg, rgba(180, 217, 234, 0.94), rgba(255, 255, 255, 0));
    width: 40%;
    /*align-content: end;*/
    font-size: 1pc;

}

#info{
    padding: 0px 20px 0px 20px;
    width: 40%;
    background-image: linear-gradient(180deg, rgba(180, 217, 234, 0.94), rgba(255, 255, 255, 0));
    font-size: 1pc;

}

.passenger {
    /*border: 1px solid #666; // Adds a subtle border to each seat*/
}


.neon-text {
    color: white;
    background-color: rgba(30, 30, 30, 0.5);
    padding: 8px;
    border-radius: 18px;
    font-weight: bold;
}

.neon-text-highlight {
    color: black;
    background-color: rgb(255, 31, 31);
    padding: 8px;
    border-radius: 10px;
}

#buttons{
    position: absolute;
    bottom: 168px;
    left: 19%;
    transform: translateX(-50%);
    z-index: 1002;
}

#qr{
    position: absolute;
    bottom: 90px;
    right: 7%;
    transform: scale(0.5);
    z-index: 1002;
}

.row-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

#highScore{
    text-align: center;
    padding: 50px;
    background-color: coral;
    margin: 20px;
    border: double;
    border-radius: 3pc;
    border-width: 3pc;
    font-weight: bolder;
}

.row-content {
    flex-grow: 1;
    position: relative;
    height: 40px; /* Match seat height */
}

.selected {
    color: red;
    filter: drop-shadow(0px 0px 3px yellow);
    font-weight: bolder;
    font-size: xx-large;
    padding: 6px;

}

.row-label {
    width: 50px; /* Adjust based on layout */
    text-align: center;
}

.left {
    margin-right: 10px;
}

.right {
    margin-left: 10px;
}