select {
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  background-color: white;
  color: #555555;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, color 0.3s ease;
}
select:focus {
  border-radius: 10px;
  outline: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 0 3px #dddddd;
}
option {
  border-radius: 10px;
  background-color: white;
  color: #555555;
}

option:hover {
  border-radius: 10px;
  background-color: #dddddd;
}

option:checked {
  border-radius: 10px;
  background-color: #cccccc;
}
  .logo {
    text-align: center;
    margin-bottom: 50px;
    animation: logoBounce 1s ease-in-out infinite alternate;
  }
  
  .logo img {
    max-width: 500px;
  }
  @keyframes logoBounce {
    0% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0);
    }
  }
  .current-time {
    text-align: right;
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
  }
body{
                text-align:center;
                overflow: hidden;
                background-size: cover;
                width: 100%;
                z-index:9999;
                height: 100%;
                position: relative;
            }
            .container {
              max-width: 40rem;
              margin: 0 auto;
              margin-top: 5rem;
              padding: 2rem;
            }
            .search-box input[type="text"] {
              width: 400px;
                height: 45px;
                line-height: 45px;
                border-radius: 20px;
                border: 1px solid #61eaff;
                box-shadow:5px 5px 21px #8cfeff;
                padding: 0px 15px;
            }
            
            .search-box button {
              width: 100px;
                height: 37px;
                line-height: 35px;
                font-size: 20px;
                border-radius: 6px;
                background-color: #85ff91;
                border: 1px solid #85ff91;
            }
            
            .search-box select {
              border: none;
              outline: none;
              font-size: 1rem;
              padding: 0 0.625rem;
            }
            
            .search-box select:focus {
              box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.1);
            }
            .modal-content {
              background-color: #fff;
              margin: 10% auto;
              padding: 20px;
              border: 1px solid #888;
              width: 80%;
              max-width: 400px;
              border-radius: 5px;
            }
            
            .background-list button {
              width: 4rem;
              height: 2rem;
              background-color: #fff;
              border: 0.1rem solid #000;
              border-radius: 0.375rem;
            }
            
            .close {
              color: #aaa;
              float: right;
              font-size: 28px;
              font-weight: bold;
              cursor: pointer;
            }
            
            .close:hover,
            .close:focus {
              background-color: #61eaff;
                border-color: 61eaff;
                color: black;
                cursor: pointer;
            }