
a {
  color: #0066cc;
  text-decoration: none;
}

body {
    font-family: Georgia, serif;
    margin: 0;
    padding: 0;
}
header, nav, main, footer {
    padding: 1rem;
}

.background-video {
  width: 150px;
  height: 150px;
  object-fit: cover;
  display: block;
  pointer-events: none;
  flex-shrink: 0;
}


main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
}




nav {
    background-color: #eee;
    font-size: 20px;
}
footer {
    background-color: #f2f2f2;
    text-align: center;
}

#goodSims{
  background-color: #7e8b86;
  padding-right: 10px;
  padding-left: 10px;
  border-radius: 10px;
  padding-bottom: 10px;
  padding-top: 2px;
  width: 100%;

}

#okSims{
  background-color: #7e6262;
  padding-right: 10px;
  padding-left: 10px;
  border-radius: 10px;
  padding-bottom: 10px;
  padding-top: 2px;
  width: 100%;
}

#inProgressSims{
  background-color: #7a9269;
  padding-right: 10px;
  padding-left: 10px;
  border-radius: 10px;
  padding-bottom: 10px;
  padding-top: 2px;
  width: 100%;

}


ul.styled-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  font-size: 1.1rem;
  gap: 1rem;
}

ul.styled-list li {
  background-color: #333;       /* dark gray box */
  color: white;                 /* white text */
  border: 1px solid #555;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

ul.styled-list li:hover {
  background-color: #1100ff;
}
ul.styled-list li a {
  text-decoration: none;
  color: inherit;           /* inherits the li text color */
  display: block;           /* makes the whole box clickable */
  width: 100%;
  height: 100%;
}

ul.styled-list li a:hover {
  text-decoration: underline;
}

.list-icon {
  width: 50px;
  height: 50px;
  vertical-align: middle;
  margin-right: 6px;
}

header {
  background-color: #333;
  color: white;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  max-width: 1800px; /* matches rest of page width */
  flex-wrap: nowrap;
  box-sizing: border-box;
  padding: 0 1rem;
}



header h1 {
  margin: 0;
  font-size: clamp(1.2rem, 5vw, 2rem);  /* shrink title smoothly */
  text-align: center;
  flex: 1;
  min-width: 0;  /* allows it to shrink */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


@media (max-width: 600px) {
  .header-content {
    flex-direction: column;
    align-items: center;
  }

  .background-video {
    width: 100px;
    height: 100px;
  }

  header h1 {
    white-space: normal;
    text-overflow: unset;
    font-size: 1.4rem;
  }
}

video::-webkit-media-controls {
  display: none !important;
  -webkit-appearance: none;
}

video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

#desc{
    background-color: #e9eef2;
    color: rgb(0, 0, 0);
    padding-right: 15px;
    padding-left: 15px;
    border-radius: 10px;
    padding-bottom: 15px;
    padding-top: 15px;
    width: 100%;
    font-family:Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 19px;
    line-height: 25px;
}

#desc,
#goodSims,
#okSims,
#inProgressSims {
  width: 100%;
  box-sizing: border-box;
}
