.dumpContainer {
    display: flex;
    gap: 5px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.fuelForm{
    width: 100%;
}

@keyframes blinkBorder {
    0% { border: 4px solid black}
    50% { border-color: transparent; }
    100% { border: 4px solid black}
}
@keyframes blinkBackground {
    0% { background-color: rgb(255, 0, 0)}
    50% { background-color: transparent; }
    100% { background-color: rgb(255, 0, 0)}
}


.blinking-border {
    border: 3px solid red;
    animation: blinkBorder 0.5s infinite alternate;
}

.fuelSelection{
    display: flex;
    justify-content: center;
    margin-top: 5px;
    gap: 10px;
}
.fuelSelection button{
    height: 30px;
    padding: 5px;
}
.fuelTopDesc{
    margin: 20px;
}
.fuelTopDesc p{
    text-align: center;
    font-size: 20px;
    color: white
}

.fuelButtons{
    display: flex;
    gap: 10px;
    justify-content: center;
}
.fuelButtons button{
    width:100px;
    height: 50px;
}

.timer{
    margin-top: 50px;
    display: flex;
    justify-content: center;
}
#countdown-timer{
    font-weight: bold;
}



#fuel-dumping-panel{
    position: fixed;
    display: none;
    width: 800px;
    height: auto;
    background: #0f1824e8;
    color:white;
    top: 50%;
    right: 50%;
    z-index: 9999;
    border-radius: 20px;
    transform: translate(50%, -50%) scale(1);
    transition: transform 300ms ease, opacity 200ms ease;
}

.fuel-panel.minimized {
    transform: translate(100vw, -50%) scale(0.2);
    opacity: 0;
    pointer-events: none;
}

#fuel-mini-timer {
  position: fixed;
  right: 5px;
  top: 10%;
  transform: translateY(-50%) scale(0.8);
  opacity: 0;
  width: 100px;
  height: 60px;
  align-content: center;
  text-align: center;
  font-weight: bold;
  border-radius: 20px;
  font-size: 20px;
  background-color: #0f1824e8;
  color: white;
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 9999;
}
#fuel-mini-timer.visible{
    opacity: 1;
}
#fuel-mini-timer.hidden{
    opacity: 0;
}
#fuel-mini-timer.timerFlash{
    animation: blinkBackground 0.5s linear infinite
}

.fuel-hint{
    color: #00ff8cdb;
}

#fuelTextDE, #fuelTextEN{
    margin: 20px 0 20px 0;
    cursor: default;
    font-size: 24px;
}

.fuel-output{
    display:grid;
    justify-content: center;
    color: white;
}

#close-fuel-dumping-panel{
    position: absolute;
    top: 10px;
    right: 12px;
    width: 20px;
}

#reset-div{
    display: flex;
    justify-content: center;
    padding: 12px;
}

.timerFlash{
    animation: blinkBorder 0.5s linear infinite
}

#timerButton{
    background-color: green;
    color: white
}
#timerButton.isRunning{
    color: black;
    background-color: orange;
}

#timerButton.needsPrompt{
    background-color: red;
}