/* static/css/roster-styles.css */

.navbar {
  background-color: var(--blood-red);
  padding: 10px;
  text-align: center;
  width: 100%;
}

.navbar h1 {
  margin: 0;
  font-size: 4.5em;
  color: var(--orange-web);
  font-family: 'PT Sans', sans-serif;
}

.navbar .arrow {
  display: inline-block;
  font-size: 1em;
  margin: 0 10px;
  cursor: pointer;
}

.navbar .arrow a {
  text-decoration: none;
  color: inherit;
}

.navbar h2 {
  font-size: 2em;
  color: var(--orange-web);
  font-family: 'PT Sans', sans-serif;
}

.content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  width: 100%;
  margin: 0 auto;
}

.shift-section {
  padding: 0;
  width: 100%;
}

.shift-section:nth-child(odd) {
  background-color: #fff;
}

.shift-section:nth-child(even) {
  background-color: var(--orange-web-transparent);
}

.shift-header-box {
  text-align: left;
}

.shift-header {
  font-size: 3rem;
  color: var(--rust);
  font-family: 'PT Sans', sans-serif;
}

.shift-content-box {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.column {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.column h3 {
  margin: 0px;
  font-size: 2.5em;
}

.column h4 {
  margin: 0px;
  font-size: 1.5em;
}

.column p {
  padding: 10px;
  font-size: 1.8em;
}

.user-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-top: 5px;
  margin-bottom: 15px;
}

.user-card, .contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.contact-info a {
  text-decoration: none;
  font-size: 3em;
  margin: 5px;
}

.jms-info a {
  text-decoration: none;
}

@media (max-width: 768px) {
  .content {
    max-width: 95%;
  }

  .shift-header {
    font-size: 2.4rem;
  }
}

@media (max-width: 1080px) {
  .shift-header {
    font-size: 3rem;
  }
}

@media (min-width: 1200px) {
  .content {
    max-width: 80%;
  }
}
