#auth{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  border: 5px solid rgb(255, 254, 205);
}

#main{
  display: none;
}

input{
  border-radius: 20px;
  background-color: #270012;
  border: 2px solid rgb(255, 254, 205);
  color: white;
  padding: 10px;
  margin-left: 20px;
}

form{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bg-background {
  background: linear-gradient(to bottom, rgb(77, 6, 39), rgb(36, 7, 18));
}

.bg-activity-list {
  background-color: #5c1f30;
  border-radius: 12px; 
  padding: 20px;
  width: 90%;
}

header {
  padding: 20px;
  background-color: rgb(39, 0, 0);
  width: 500px;
  height: 150px;
  border-bottom-right-radius: 500px;
}

.activityEntry{
  background-color: #270012;
  box-shadow: 0px 0px 10px rgb(255, 254, 205);
  border: 2px solid rgb(255, 254, 205);
  padding: 20px;
  border-radius: 20px;
}

#notFound, #loading{
  padding: 20px;
  margin-top: 30px;
  display: none;
}

#activityList{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px;
}

.filter{
  margin-top: 20px;
  margin-bottom: 30px;
  position: relative;
  display: grid;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  gap: 15%;
  grid-template-columns: repeat(2, 1fr);
}

label{
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-family: 'Special Elite';
}

select{
  width: 200px;
  border-radius: 20px;
  background-color: #270012;
  padding: 10px;
}

h1, h2, p{
  font-family: 'Special Elite';
}

p{
  font-size: 1.3rem;
}

.text-glow{
  color: rgb(255, 254, 205);
  text-shadow: 0px 0px 5px rgb(255, 254, 205);
}

.filter-line{
  position: absolute;
  background-color: rgb(255, 254, 205);
  box-shadow: 0px 0px 10px rgb(255, 254, 205);
  height: 10px;
  width: 100%;
  bottom: 125px;
}

.glow-node{
  color:#270012;
  z-index: 1;
  padding: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgb(255, 254, 205);
  width: 250px;
  height: 250px;
  border-radius: 50%;
  box-shadow: 0px 0px 10px rgb(255, 254, 205);
  text-align: center;
  transition: transform 0.1s ease-in;
}

.glow-node:hover{
  transform: scale(1.05);
}

.right{
  display: flex;
  justify-content: flex-end;
  padding: 20px;
  position: relative;
}

#favouriteActivities{
  z-index: 1;
  position: absolute;
  top: -130px;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0px 0px 8px rgb(255, 254, 205);
  border: 2px solid rgb(255, 254, 205);
  background-color: #270012;
  display: flex;
  flex-direction: column;
  width: 500px;
  height: auto;
  justify-content: flex-end;
  align-items: center;
}

#favouriteActivitiesBody{
  max-height: 200px;
  overflow-y: auto;
  text-align: start;
}

.favouriteActivitiesEntry{
  background-color: rgb(26, 4, 4);
  border-radius: 12px;
  text-align: center;
  padding: 10px;
  width: 400px;
  margin-right: 20px;
}

.entryTitle{
  padding: 20px;
  height: 160px;
  overflow: hidden;
}

.activityEntryBody {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
}

.glow-icon{
  background-color: rgb(255, 254, 205);
  box-shadow: 0px 0px 8px rgb(255, 254, 205);
  padding: 5px;
  height: 25px;
  border-radius: 100%;
}

footer{
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #270012;
  height: 100px;
  margin-top: 150px;
}

button{
  background-color: #2e0813;
  font-family: 'Special Elite' !important;
  padding: 10px;
  width: 300px;
  font-size: 1.1rem !important;
  border-radius: 100px !important; 
  border: 2px solid rgb(255, 254, 205);
  transition: background-color 0.1s ease-in, transform 0.1s ease-in;
}

button:hover{
  background-color: #4d1f2c;
  transform: scale(1.05);
}

#logoutContainer{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-top: 20px;
}