html {
  background: linear-gradient(to bottom, rgb(50, 50, 50) 0%, rgb(50, 50, 50) 50%, rgb(17.25, 17.25, 17.25) 50%, rgb(17.25, 17.25, 17.25) 100%);
}

body {
  padding: 0px;
  margin: 0px;
  margin-top: 50px;
  min-height: calc(100vh - 50px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #e7dbc4;
  overflow-x: hidden;
}

input, textarea, select {
  font-size: 16px;
}

#topNavBar {
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 50px;
  display: flex;
  background-color: rgb(50, 50, 50);
  user-select: none;
  box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.3);
  z-index: 5;
}
#topNavBar li {
  display: flex;
  width: 10%;
  min-width: 120px;
}
#topNavBar li:not(#loginNavBarEntry):hover {
  background-color: rgb(70, 70, 70);
}
#topNavBar li.active {
  background-color: #004462;
  border-bottom: 5px #c01d18 solid;
}
#topNavBar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: white;
  font: bold 20px Helvetica, Arial, sans-serif;
}

#navToggle {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-color: rgb(50, 50, 50);
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  z-index: 6;
  align-items: center;
  justify-content: center;
}
#navToggle:hover {
  background-color: rgb(70, 70, 70);
}

#loginNavBarEntry {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
#loginNavBarEntry a {
  width: calc(100% - 40px);
  height: calc(100% - 15px);
  background-color: rgb(90, 90, 90);
  border-radius: 15px;
  border: solid rgb(90, 90, 90) 2px;
}
#loginNavBarEntry a:hover {
  background-color: rgb(228, 44.625, 39);
  border: solid #c01d18 2px;
}

.shell {
  display: flex;
  justify-content: center;
  align-items: center;
  position: static;
  margin: 0px;
  width: 100%;
  height: fit-content;
}

@media (max-width: 800px) {
  #loginBase {
    width: 100%;
    border-radius: 0px;
  }
}
.headerImage img {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  display: block;
}
.headerImage #imageOverlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 119, 123, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: inset 10px 0px 20px rgba(0, 0, 0, 0.6);
}
.headerImage #sectionTitle {
  font-family: "Graduate", serif;
  font-weight: bolder;
  font-size: clamp(22px, min(13vw, 15vh), 160px);
  color: white;
  text-shadow: 0.06em 0.06em 0px #c01d18;
  line-height: 1.1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
  overflow: hidden;
  padding: 10px 20px;
  box-sizing: border-box;
}
.headerImage {
  width: 100%;
  max-height: 500px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.bodyImage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.bodyImage #imageOverlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 119, 123, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: inset 10px 0px 20px rgba(0, 0, 0, 0.6);
  max-height: 100vh;
  overflow-y: hidden;
}
.bodyImage img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 800px) {
  #navToggle {
    display: flex;
  }
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: rgb(50, 50, 50);
    z-index: 5;
    box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.3);
  }
  #topNavBar {
    top: 50px;
    height: auto;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }
  #topNavBar.open {
    max-height: 400px;
  }
  #topNavBar li {
    width: 100%;
    min-width: unset;
    height: 50px;
    border-bottom: 1px solid rgb(70, 70, 70);
  }
  #loginNavBarEntry {
    margin-left: 0;
  }
  #loginNavBarEntry a {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}
footer {
  margin-top: 20px;
  background-color: rgb(17.25, 17.25, 17.25);
  width: 100%;
  box-sizing: border-box;
  color: rgb(200, 200, 200);
  padding: 10px;
  text-align: center;
  min-height: calc(100vh - 60px);
  height: auto;
  z-index: 4;
}
footer .footerSection h3 {
  color: rgb(200, 200, 200);
  font-size: 30px;
  margin-bottom: 0px;
  margin-top: 5px;
}
footer .footerSection ul {
  background-color: rgb(17.25, 17.25, 17.25);
  padding: 10px;
}
footer .footerSection li, footer .footerSection a {
  color: white;
  list-style: none;
  margin-top: 10px;
}
footer .footerContacts {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .footerContacts li {
  display: flex;
  align-items: baseline;
  gap: 6px;
  justify-content: center;
}
footer .footerContacts .footerContactLabel {
  font-weight: bold;
  opacity: 0.75;
  white-space: nowrap;
}
footer .footerContacts .footerContactValue a {
  color: white;
  text-decoration: none;
}
footer .footerContacts .footerContactValue a:hover {
  text-decoration: underline;
}

#eventData {
  height: fit-content;
  width: 80%;
  box-sizing: border-box;
  margin-top: 20px;
  border-radius: 30px;
  padding: 30px;
}
@media (max-width: 800px) {
  #eventData {
    width: 100%;
    border-radius: 0px;
  }
}
#eventData {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #004462;
  box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.6);
}
#eventData input {
  width: 80%;
  padding: 5px;
  margin-bottom: 20px;
  margin-top: 5px;
}
#eventData textarea {
  width: 80%;
  padding: 5px;
  margin-bottom: 20px;
  margin-top: 5px;
  resize: vertical;
  color: black;
}
#eventData label {
  width: calc(80% + 10px);
  text-align: left;
  font: bold 20px Helvetica, Arial, sans-serif;
  color: white;
  font-size: 16px;
}
#eventData #postTimeField {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#eventData .eventBtn {
  height: 50px;
  width: 60%;
  font: bold 20px Helvetica, Arial, sans-serif;
  color: white;
  background-color: #c01d18;
  border-radius: 20px;
  border: 2px solid #c01d18;
  margin-top: 30px;
  margin-bottom: 0px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center; /* Vertically centers content */
  justify-content: center; /* Horizontally centers content */
}
#eventData .eventBtn:hover {
  background-color: rgb(228, 44.625, 39);
}
#eventData .eventBtn.eventBtnCancel {
  background-color: transparent;
  border-color: white;
  color: white;
}
#eventData .eventBtn.eventBtnCancel:hover {
  background-color: rgba(255, 255, 255, 0.08);
}
#eventData .editEventActions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}
#eventData #eventCreatorHeader {
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
  user-select: none;
}
#eventData .postImmediateRow {
  width: calc(80% + 10px);
  margin-bottom: 8px;
}
#eventData .postImmediateToggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 5px;
}
#eventData .postImmediateToggle input[type=checkbox] {
  width: auto;
  margin: 0;
  padding: 0;
  accent-color: #c01d18;
  transform: scale(1.3);
  flex-shrink: 0;
  cursor: pointer;
}
#eventData .volunteerCheckRow {
  display: flex;
  align-items: center;
  gap: 10px;
  width: calc(80% + 10px);
  margin-bottom: 20px;
}
#eventData .volunteerCheckRow #is_volunteer {
  width: auto;
  margin: 0;
  padding: 0;
  accent-color: #bbc217;
  transform: scale(1.4);
  flex-shrink: 0;
  cursor: pointer;
}
#eventData .volunteerCheckRow label {
  width: auto;
  cursor: pointer;
  font-size: 15px;
}
#eventData .volunteerCheckRow label small {
  font-weight: normal;
  opacity: 0.75;
  font-size: 12px;
}

.eventList {
  height: fit-content;
  width: 80%;
  box-sizing: border-box;
  margin-top: 20px;
  border-radius: 30px;
  padding: 30px;
}
@media (max-width: 800px) {
  .eventList {
    width: 100%;
    border-radius: 0px;
  }
}
.eventList {
  box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgb(158.5180722892, 126.2771084337, 64.4819277108);
  width: 90%;
}
.eventList h2, .eventList a {
  font: bold 20px Helvetica, Arial, sans-serif;
  color: white;
  font-size: 28px;
  margin: 0px;
  margin-bottom: 20px;
  width: 100%;
  text-align: left;
  text-decoration: none;
}
.eventList a:hover {
  color: rgb(222.5, 222.5, 222.5);
}
.eventList li {
  width: 90%;
  list-style: none;
  margin-bottom: 30px;
  border-radius: 30px;
  padding: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}
.eventList li h2 {
  font: bold 20px Helvetica, Arial, sans-serif;
  color: white;
  font-size: 24px;
  margin: 0px;
}
@media (max-width: 800px) {
  .eventList li {
    width: 97%;
    border: none;
  }
}
.eventList li {
  position: relative;
  user-select: none;
  color: #f8f8f8;
  font-weight: bold;
}
.eventList li.eventStyle1 {
  border: 20px #c01d18 solid;
  background-color: #f8f8f8;
  color: #004462;
}
.eventList li.eventStyle1 h2, .eventList li.eventStyle1 a {
  color: #004462;
}
.eventList li.eventStyle1 hr {
  border: 1px #004462 solid;
}
.eventList li.eventStyle1 .actionBtn {
  background-color: rgb(208.9746543779, 216.797235023, 25.702764977);
}
.eventList li.eventStyle1 button:hover {
  background-color: rgb(225.069124424, 232.0529953917, 61.4470046083);
}
.eventList li.eventStyle1 a:hover {
  color: rgb(0, 103.387755102, 149);
}
.eventList li.eventStyle2 {
  border: 20px #004462 solid;
  background-color: #c01d18;
}
.eventList li.eventStyle2 .actionBtn {
  background-color: #004462;
  color: #f8f8f8;
  border-color: #f8f8f8;
}
.eventList li.eventStyle2 .actionBtn:hover {
  background-color: rgb(0, 103.387755102, 149);
}
.eventList li.eventStyle3 {
  border: 20px #f8f8f8 solid;
  background-color: #c01d18;
}
.eventList li.eventStyle3 .actionBtn {
  background-color: #f8f8f8;
  color: #004462;
  border-color: #004462;
}
.eventList li.eventStyle3 .actionBtn:hover {
  background-color: rgb(222.5, 222.5, 222.5);
}
.eventList li.eventStyle4 {
  border: 20px #c01d18 solid;
  background-color: #004462;
}
.eventList li.eventStyle4 .actionBtn {
  background-color: #004462;
  color: #f8f8f8;
  border-color: #f8f8f8;
}
.eventList li.eventStyle4 .actionBtn:hover {
  background-color: rgb(0, 103.387755102, 149);
}
.eventList li.eventStyle5 {
  border: 20px #bbc217 solid;
  background-color: #004462;
}
.eventList li.eventStyle5 .actionBtn {
  background-color: #004462;
  color: #f8f8f8;
  border-color: #bbc217;
}
.eventList li.eventStyle5 .actionBtn:hover {
  background-color: rgb(0, 103.387755102, 149);
}
.eventList li .description {
  font-size: 20px;
  white-space: pre-wrap;
}
.eventList li hr {
  border: 1px #f8f8f8 solid;
}
.eventList li .eventTopRow {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 5px;
}
.eventList li .eventTopRow .eventDate {
  margin: 0;
  width: auto;
  margin-left: auto;
  text-align: right;
}
.eventList li .eventTopRow .volunteerBadge {
  background-color: #bbc217;
  padding: 5px;
  border: 2px #bbc217 solid;
  border-radius: 20px;
}
.eventList li .eventDate {
  margin: 0px;
  width: 100%;
  text-align: right;
}
.eventList li .eventActions {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
.eventList li .eventActions button {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  font-size: 16px;
  border: 2px #004462 solid;
}
.eventList li .eventActions .actionBtn.saved {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.6);
  opacity: 0.85;
}
.eventList .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 0;
}
.eventList .paginationText {
  color: white;
  font-size: 16px;
  margin: 0px;
  width: 33.33%;
}
.eventList .noEvent {
  font: bold 20px Helvetica, Arial, sans-serif;
  color: white;
  border: 5px white dashed;
  border-radius: 30px;
  width: 90%;
  margin-bottom: 30px;
  margin-top: 30px;
  border-radius: 30px;
  padding: 10px;
  height: 300px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.eventList .prevButton {
  text-align: right;
}
.eventList .nextButton {
  text-align: left;
}
.eventList .pageNumber {
  width: 100px;
  text-align: center;
}

.volunteerBadge {
  display: inline-block;
  background-color: #bbc217;
  color: #004462;
  font-size: 13px;
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.volunteerApprovedBadge {
  background-color: #1a5c2a;
  color: #2ecc71;
}

.volunteerOpportunity {
  margin-top: 12px;
  padding: 10px 14px;
  border-left: 4px solid #bbc217;
  background: rgba(187, 194, 23, 0.12);
  border-radius: 0 10px 10px 0;
}
.volunteerOpportunity h4 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: bold;
  color: #bbc217;
}
.volunteerOpportunity p {
  margin: 0;
  font-size: 14px;
  white-space: pre-wrap;
}

.rsvpStatusMsg {
  margin: 10px 0 0;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: bold;
}
.rsvpStatusMsg.rsvpPending {
  background: rgba(187, 194, 23, 0.25);
  color: rgb(165.0253456221, 171.202764977, 20.297235023);
}
.rsvpStatusMsg.rsvpApproved {
  background: rgba(40, 180, 80, 0.25);
  color: #35c465;
}
.rsvpStatusMsg.rsvpDenied {
  background: rgba(192, 29, 24, 0.25);
  color: rgb(233.6666666667, 88.7777777778, 84.3333333333);
}

.rsvpManager {
  margin-top: 10px;
  width: 100%;
}

.rsvpManagerTitle {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px;
  color: inherit;
}

.rsvpList {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 0 0 0 18px;
  margin: 0;
  list-style: disc;
}

.rsvpEntry {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 8px 12px;
  gap: 10px;
  flex-wrap: wrap;
}

.rsvpInfo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
}
.rsvpInfo strong {
  font-size: 15px;
}

.rsvpActions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.rsvpActions .actionBtn {
  flex: none;
  height: 34px;
  padding: 0 12px;
  font-size: 13px;
  border-radius: 8px;
  cursor: pointer;
}

.rsvpBadge {
  font-size: 12px;
  font-weight: bold;
  padding: 3px 9px;
  border-radius: 12px;
}
.rsvpBadge.rsvpPendingBadge {
  background: rgba(187, 194, 23, 0.3);
  color: rgb(165.0253456221, 171.202764977, 20.297235023);
}
.rsvpBadge.rsvpApprovedBadge {
  background: rgba(40, 180, 80, 0.3);
  color: #4cff88;
}
.rsvpBadge.rsvpDeniedBadge {
  background: rgba(192, 29, 24, 0.3);
  color: rgb(233.6666666667, 88.7777777778, 84.3333333333);
}

.rsvpEmpty {
  font-size: 14px;
  opacity: 0.7;
  margin: 4px 0;
}

.pendingRsvpList {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.pendingRsvpList li {
  background-color: rgb(50, 50, 50);
  padding: 20px;
}
.pendingRsvpList .rsvpActions button {
  background-color: #bbc217;
  border: 2px #bbc217 solid;
}
.pendingRsvpList .rsvpActions button:hover {
  background-color: rgb(221.5437788018, 229.3502304147, 38.6497695853);
}

.rsvpEventLabel {
  font-size: 13px;
  opacity: 0.8;
  font-style: italic;
  margin-top: 2px;
}

.noEventCompact {
  height: 100px !important;
  margin-top: 10px !important;
}

@media (max-width: 800px) {
  .eventList {
    width: 100%;
    border-radius: 0px;
  }
  #eventData .eventBtn {
    width: 85%;
    height: 56px;
  }
  #eventData textarea {
    width: 95%;
  }
  #eventData label {
    width: calc(95% + 10px);
  }
  #eventData .postImmediateRow {
    width: calc(95% + 10px);
  }
  #eventData .volunteerCheckRow {
    width: calc(95% + 10px);
  }
  #eventData #postTimeField {
    width: 100%;
  }
  #eventData input {
    width: 95%;
  }
}

/*# sourceMappingURL=events.css.map */
