body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
}

header {
  background-color: #4285f4;
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
}

.logo-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: white;
  margin-right: 10px;
}

nav button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  margin-left: 10px;
}

main {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
}

.wheel-container {
  position: relative;
  max-width: 500px;
  max-height: 500px;
}

#spin-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  cursor: pointer;
}

#winner-indicator {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
}

.triangle {
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 22.5px 30px 22.5px 0;
  border-color: transparent #000000 transparent transparent;
  transform: rotate(0deg);
  -webkit-filter: drop-shadow(1px 1px 1px rgba(0,0,0,.5));
  filter: drop-shadow(-1px 1px 1px rgba(102,102,102,.9));
}

.tabs {
  display: flex;
}

.tab {
  flex: 1;
  padding: 10px;
  background-color: #e0e0e0;
  border: none;
  cursor: pointer;
}

.tab.active {
  background-color: white;
}

.tab-content {
  display: none;
  background-color: white;
  padding: 20px;
}

.tab-content.active {
  display: block;
}

.controls {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.controls button {
  background-color: #f0f0f0;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}

.entry-list {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

/* .entry-list li {
  cursor: pointer;
} */

#new-entry {
  flex-grow: 1;
  margin-right: 10px;
  padding: 5px;
}

#add-entry {
  background-color: #4285f4;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}

#entry-list {
  list-style-type: none;
  padding: 0;
  width: 100%;
}

#entry-list li {
  background-color: #f0f0f0;
  margin: 5px 0;
  padding: 5px;
  display: flex;
  justify-content: space-between;
}

#entry-list li button {
  background: none;
  border: none;
  cursor: pointer;
}

#winner {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

#show-options {
  background-color: #4285f4;
  color: white;
  border: none;
  padding: .5rem 1rem;
  cursor: pointer;
  margin-top: 2rem;
  text-align: center;
  font-size: 1rem;
  font-weight: bold; 
}