body {
  background-color: #000;
  font-family: "Open Sans";
  color: #fff;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

.header {
  background-color: #01582B;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
}

.header_title {
  display: flex;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
}

.logo {
  display: flex;
}
  
  /* Container */
.container {
  background-color: black;
  width: 100%;
  margin-top: 80px; /* Altura do header */
  min-height: calc(100vh - 80px); /* Altura total da viewport menos a altura do header */
  color: white;
  overflow-y: auto; /* Scroll vertical quando necessário */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Lista */
.listEvents {
  display: block;
  width: 100%;
  padding: 25px;
  box-sizing: border-box;
}

.listEvents > li {
  display: flex;
  flex-direction: column;
  padding: 0;
  border: none;
  background-color: #DDDDDD;
  color: #01582B;
  margin-bottom: 25px;
}

.wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  gap: 0;
}

.photo {
  display: flex;
  width: 225px;
}

.content {
  display: flex;
  flex-direction: space-between;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  gap: 20px;
}

.content_column {
  display: flex;
  padding: 5px 20px;
  box-sizing: border-box;
}

.content_column_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70%;
  gap: 10px;
  text-transform: uppercase;
}

.content_column_right {
  display: flex;
  width: 30%;
  justify-content: flex-end;
  align-items: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  text-align: right;
}

.title {
  display: flex;
  align-items: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  width: 100%;
  line-height: 32px;
}

.room {
  display: flex;
  align-items: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  width: 100%;
  line-height: 28px;
}

.content_time {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 25px;
  box-sizing: border-box;
}

.content_pantry {
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
  box-sizing: border-box;
  background-color: #ccc;
  width: 100%;
  text-transform: uppercase;
}

.pantry_title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.pantry_list {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  list-style: outside;
  padding-left: 25px;
}

.no_events {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 25px;
  box-sizing: border-box;
  color: #888;
  font-size: 100px;
  margin: auto 0;
}