body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: black;
    
    height: 100vh;
    width: 100vw;
    margin: 0px;
    padding: 0px;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container{
    color: #003cff;
    height: auto;
    width: 90%;
    text-align: center;
    font-family: Arial;
    font-weight: bold;
    border-radius: 50px;
    background-color: #13131380;
    box-shadow: 0px 0px 10px 10px #13131380;
}

#time {
    font-size: 20vmax;
    text-shadow: 10px 10px 5px #003cff40;
}

#date {
    margin-bottom: 2vmax;
    font-size: 4vmax;
    text-shadow: 4px 4px 3px #003cff40;
}

select {
    background-color: #003cff;
    color: white;
    border-radius: 10px;
    width: 150px;
    height: auto;
    position: absolute;
    margin-top: 30px;
    top: 0;
    border: none;
    padding: 5px;
}

.rainbowSelectAnimated {
    animation: rainbowSelect_animation 15s infinite linear;
}

@keyframes rainbowSelect_animation {
    0%, 100% {
        color: red;
        background-color: #ff000050;
    }
    15% {
        color: orange;
        background-color: #ffa50050;
    }
    30% {
        color: yellow;
        background-color:  #ffff0050;
    }
    45% {
        color: green;
        background-color: #00800050;
    }
    60% {
        color: blue;
        background-color: #0000ff50;
    }
    75% {
        color: indigo;
        background-color: #4b008250;
    }
    
}

.rainbowTextAnimated {
    animation: rainbow_animation 15s infinite linear;
}

@keyframes rainbow_animation {
    0%, 100% {
        color: red;
        box-shadow: 0px 0px 10px 10px #ff000050;
    }
    15% {
        color: orange;
        box-shadow: 0px 0px 10px 10px #ffa50050;
    }
    30% {
        color: yellow;
        box-shadow: 0px 0px 10px 10px #ffff0050;
    }
    45% {
        color: green;
        box-shadow: 0px 0px 10px 10px #00800050;
    }
    60% {
        color: blue;
        box-shadow: 0px 0px 10px 10px #0000ff50;
    }
    75% {
        color: indigo;
        box-shadow: 0px 0px 10px 10px #4b008250;
    }
    
}

.rainbowShadowTimeAnimated {
    animation: rainbowShadowTimeAnimation 15s infinite linear;
}

@keyframes rainbowShadowTimeAnimation {
    0%, 100% {
        text-shadow: 10px 10px 5px #ff000050;
    }
    15% {
        text-shadow: 10px 10px 5px #ffa50050;
    }
    30% {
        text-shadow: 10px 10px 5px #ffff0050;
    }
    45% {
        text-shadow: 10px 10px 5px #00800050;
    }
    60% {
        text-shadow: 10px 10px 5px #0000ff50;
    }
    75% {
        text-shadow: 10px 10px 5px #4b008250;
    }
    
}

.rainbowShadowDateAnimated {
    animation: rainbowShadowDateAnimation 15s infinite linear;
}

@keyframes rainbowShadowDateAnimation {
    0%, 100% {
        text-shadow: 4px 4px 3px #ff000050;
    }
    15% {
        text-shadow: 4px 4px 3px #ffa50050;
    }
    30% {
        text-shadow: 4px 4px 3px #ffff0050;
    }
    45% {
        text-shadow: 4px 4px 3px #00800050;
    }
    60% {
        text-shadow: 4px 4px 3px #0000ff50;
    }
    75% {
        text-shadow: 4px 4px 3px #4b008250;
    }
    
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    width: 100px;
    height: 50px;
    cursor: pointer;
    background-color: transparent;
    position: absolute;
    margin-top: 30px;
    top: 0;
    outline: none;
}

*:focus {
    outline: none;
}

input::-webkit-color-swatch{
    border-radius: 20px;
    border: none;
}

input::-moz-color-swatch{
    border-radius: 20px;
    border: none;
}

/*Scrollbar*/
body::-webkit-scrollbar {
    display: none;
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.popup-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #13131380;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  gap: 2vw;
  font-family: sans-serif;
  z-index: 1000;
  max-width: 350px;
  border-left: 5px solid #003cff;
  color: white;
}

.popup-toast a {
  color: #0084ff;
  text-decoration: underline;
}

.popup-close {
  margin-left: auto;
  cursor: pointer;
  font-weight: bold;
  color: white;
}
