@font-face {
  font-family: 'Koodak';
  src: url('assets/BKoodakBold.woff') format('woff'),
        url('assets/BKoodakBold.ttf') format('truetype'),
        url('assets/BKoodakBold.eot') format('eot');
  font-weight: normal;
  font-style: normal;
}

@keyframes blinker {
  50% { opacity: 0; }
}

body {
  font-family: 'Koodak', fallback, sans-serif;
  font-size: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: fixed;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 0;
}

.player-container {
  width: 100%;
  height: auto;
  max-width: 320px;
  max-height: 640px;
  /* overflow: auto; */
  /* backdrop-filter: blur(5px); */
  background-color: rgba(255, 255, 255, 0.55);
  /* backdrop-filter: contrast; */
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
  padding-left: 20px;
}

.location-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.65);
  border-radius: 20px;
  /* margin-bottom: 20px; */
  width: 100%;
}


.logo {
  width: 150px; /* adjust as needed */
  height: 150px; /* adjust as needed */
  border-radius: 50px;
}

.logo-continer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

/* .time-remaining {
  font-family: 'Koodak', sans-serif;
  font-size: 20px;
  color: rgb(0, 0, 0);
  padding: 20px;
} */

.time-left {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.round-button {
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

/* beautiful button that takes attention */
.poll-button {
  background-color: #05c555;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  font-size: 20px;
  font-family: 'Koodak', sans-serif;
  flex: auto;
}

.play-button {
  /* border-radius: 50%; */
  width: 70px;
  height: 70px;
  background: none;
  border: none; 
}

.volume-button {
  /* border-radius: 50%; */
  width: 50px;
  height: 50px;
  background: none;
  border: none; 
}

h1 {
  /* font-family: 'Inter', sans-serif; */
  font-size: 30px;
  color: #BF0844;
  background-color: #b99999;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 10px;
}

#volume-logo {
  width: 100%;
  height: 100%;
  fill: red;
}

#play-pause-logo {
  width: 100%;
  height: 100%;
  fill: red;
}
#audio-player {
  display: none;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.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;
}
/* 
@font-face {
  font-family: 'Inter';
  src: url('/path/to/inter.woff2') format('woff2'),
       url('/path/to/inter.woff') format('woff');
  /* Add more font formats if necessary */
  /* Specify the path to the font files */
  /* Make sure to replace '/path/to/' with the actual path */
/* }  */

/* for city drop down make the font color BF0844 and 
backgraound D9D9D9 with 50% don't show drop down pointer 
the fond of this should be Inter size 32*/

select {
  font-size: 20px;
  color: #1e1a1cf1;
  background-color: #b9999900;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  padding: 10px;
  /* width: 100%; */
  text-align: center;
  /* margin-bottom: 20px; */
  font-family: 'Koodak', sans-serif;
}

#timetable {
  font-size: 12px;
  color: #BF0844;
  background-color: #b99999;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  margin-bottom: 20px;
}

.location-logo {
  width: 30px; /* adjust as needed */
  height: 30px; /* adjust as needed */
}