@import url("../../../main.css");
@import url("../navigation/navigation.css");
@import url("../footer/footer.css");

#page-content {
  width: 96%;
  background-color: var(--clean-and-serene-white);
  /* padding: 5%; */
}

#map-container {
  position: relative;
}

#map {
  height: 80vh;
  width: 100%;
  /* background-image: url("assets/map.png"); */
  /* background-size: 100% 100%; */
}

#meeting-actions-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--stepwork-pencil-lead);
  font-family: "Inter", sans-serif;
  font-size: var(--s);
}

#add-a-meeting-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

#add-a-meeting-button {
  height: 70px;
  display: flex;
  gap: 10%;
  justify-content: center;
  align-items: center;
  background-color: var(--surrender-white);
  border-radius: 10px;
  width: 60%;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
}

#add-a-meeting-button-text,
#meeting-list-button-text {
  font-weight: 600;
}

#add-a-meeting-button-icon,
#meeting-list-button-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

#add-a-meeting-button-icon svg,
#meeting-list-button-icon svg {
  height: 30px;
}

#meeting-list-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

#meeting-list-button {
  display: flex;
  height: 70px;
  gap: 10%;
  justify-content: center;
  align-items: center;
  background-color: var(--surrender-white);
  border-radius: 10px;
  width: 60%;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
}

#list-of-meetings {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--stepwork-pencil-lead);
  font-family: "Inter", sans-serif;
  margin-bottom: 100px;
  padding-left: 1%;
  padding-right: 1%;
  /* gap: 10%; */
}

.meeting {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background-color: var(--surrender-white);
  border-radius: 30px;
  /* min-height: 200px; */
  margin-bottom: 3%;
  gap: 20px;
}

.name-and-edit-icon {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 10%;
  gap: 10px;
  /* padding-right: 3%; */
  padding-top: 3%;
}

.name {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  font-size: var(--s);
  font-weight: 600;
}

.edit-icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
}

.meeting-details {
  flex: 2;
  padding-left: 3%;
  padding-bottom: 3%;
  padding-right: 3%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 5px;
}

.time-and-date {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 5px;
  min-height: 150px;
}

.time {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: var(--silver-medallion-3o);
  border-radius: 10px;
  width: 97%;
  height: 90%;
  flex: 1;
}

.date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: var(--silver-medallion-3o);
  border-radius: 10px;
  width: 97%;
  height: 90%;
  flex: 1;
}

.format-and-address {
  flex: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 150px;
  gap: 5px;
}

.format {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  flex: 1;
  gap: 5px;
  font-weight: 600;
}

.start-block {
  flex: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--silver-medallion-3o);
  border-radius: 10px;
  width: 100%;
  height: 70px;
}

.first-of-month {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  width: 100%;
  height: 70px;
  gap: 5px;
}

.second-of-month {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  width: 100%;
  height: 70px;
  gap: 5px;
}

.third-of-month {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  width: 100%;
  height: 70px;
  gap: 5px;
}

.fourth-of-month {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  width: 100%;
  height: 70px;
  gap: 5px;
}

.fifth-of-month {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  width: 100%;
  height: 70px;
  gap: 5px;
}

.end-block {
  flex: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1%;
  background-color: var(--silver-medallion-3o);
  border-radius: 10px;
  width: 100%;
  height: 70px;
}

.order {
  background-color: var(--silver-medallion-3o);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.code {
  background-color: var(--silver-medallion-3o);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.address {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1%;
  background-color: var(--silver-medallion-3o);
  width: 100%;
  height: 100%;
  flex: 1;
  border-radius: 10px;
}

.description {
  flex: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1%;
  background-color: var(--silver-medallion-3o);
  border-radius: 10px;
  width: 100%;
  height: 150px;
  font-weight: 600;
}

.distance {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--silver-medallion-3o);
  border-radius: 10px;
  width: 100%;
  height: 150px;
  gap: 5px;
}

.miles-number {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--s);
  font-weight: 600;
}

.miles-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}

#search-bar {
  width: 550px;
  background-color: var(--surrender-white);
  border-radius: 10px;
  padding: 1%;
  position: absolute;
  top: 5%;
  /* Position at the top */
  left: 50%;
  /* Position at the horizontal center */
  transform: translateX(-50%);
  /* Move back half of the width to align center */
  z-index: 1;
}

#day-filter {
  width: 100px;
  height: 50px;
  background-color: var(--surrender-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  /* padding: 1%; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  bottom: 15%;
  /* Position at the top */
  left: 10px;
  /* Position at the horizontal center */
  z-index: 99;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
}

#day-filter-title {
  background-color: var(--duct-tape-grey);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50%;
}

#day-filter-value {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50%;
}

#day-filter-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  background-color: var(--surrender-white);
  border-radius: 0 0 20px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 150%;
  text-align: center;
  overflow-y: auto;
  max-height: 110px;
  z-index: 999;
  border-radius: 10px;
}

#day-filter-dropdown>div:first-child {
  border-top: solid 0.5px var(--two-or-more-years);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

#day-filter-dropdown>div {
  border-bottom: solid 0.5px var(--two-or-more-years);
  border-left: solid 0.5px var(--two-or-more-years);
  border-right: solid 0.5px var(--two-or-more-years);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 25px;
  padding: 5px;
}

#day-filter-dropdown>div:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.day-selected {
  background-color: var(--duct-tape-grey);
}

#radius-filter {
  width: 100px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--surrender-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  /* padding: 1%; */
  position: absolute;
  bottom: 5%;
  /* Position at the top */
  left: 10px;
  /* Position at the horizontal center */
  z-index: 99;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
}

#radius-filter-title {
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-color: var(--duct-tape-grey);
}

#radius-filter-value {
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#radius-filter-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  background-color: var(--surrender-white);
  border-radius: 0 0 20px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 150%;
  text-align: center;
  overflow-y: auto;
  max-height: 100px;
  border-radius: 10px;
}

#radius-filter-dropdown>div:first-child {
  border-top: solid 0.5px var(--two-or-more-years);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

#radius-filter-dropdown>div {
  border-bottom: solid 0.5px var(--two-or-more-years);
  border-left: solid 0.5px var(--two-or-more-years);
  border-right: solid 0.5px var(--two-or-more-years);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 25px;
  padding: 5px;
}

#radius-filter-dropdown>div:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.radius-selected {
  background-color: var(--duct-tape-grey);
}

#search-bar input {
  outline: none;
  border: none;
  width: 100%;
  height: 100%;
  font-size: var(--s);
  color: var(--stepwork-pencil-lead);
}

.spacer {
  height: 150px;
  display: none;
}

#map-meeting-info {
  width: 550px;
  background-color: var(--surrender-white);
  border-radius: 10px;
  padding: 2%;
  position: absolute;
  bottom: 70px;
  right: 100px;
  z-index: 999999999;
  display: none;
}

#title-and-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

#title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: var(--s);
  font-weight: 600;
  color: var(--stepwork-pencil-lead);
}

#icons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.text {
  font-weight: 600;
  color: var(--stepwork-pencil-lead);
}



#meeting-time-and-days {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5%;
  margin-bottom: 10px;
}

#meeting-time {
  background-color: var(--silver-medallion-3o);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  border-radius: 10px;
  width: 50%;
}

#meeting-days {
  background-color: var(--silver-medallion-3o);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  height: 45px;
  width: 50%;
}

#address-and-distance {
  background-color: var(--silver-medallion-3o);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  height: 75px;
  margin-bottom: 10px;
  gap: 20px;
}

#miles {
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--stepwork-pencil-lead);
}

#description {
  background-color: var(--silver-medallion-3o);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

/* Add Meeting Popup */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f9f9f9;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  height: 90vh;
  width: 70%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Inter", sans-serif;
  padding: 5%;
  gap: 3%;
  max-height: 800px;
  max-width: 1000px;
}

#add-format-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 35px;
  border: 1px solid #ccc;
  border-radius: 10px;
  gap: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 2;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 350px;
}

#add-format-title {
  font-weight: 600;
  color: var(--stepwork-pencil-lead);
}

#day-of-month-frequency-container,
#format-container {
  width: 100%;
  position: relative;
}

#day-of-month-frequency-dropdown,
#format-dropdown {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  background-color: var(--surrender-white);
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  width: 100%;
  z-index: 3;
  /* box-shadow: 0 0 0.15rem var(--new-jersey-chrome); */
  height: 80px;
}

#day-of-month-frequency-dropdown {
  border-top: solid 0.3px var(--two-or-more-years);
}

#occurences {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  font-weight: 600;
  overflow-y: auto;
  background-color: var(--duct-tape-grey);
  border-bottom-left-radius: 5px;
}

#day-of-the-week {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  overflow-y: auto;
  font-weight: 600;
  background-color: var(--duct-tape-grey);
  border-left: solid 0.3px var(--two-or-more-years);
  border-bottom-right-radius: 5px;
}

#format-dropdown {
  border-top: solid 0.3px var(--two-or-more-years);
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  font-weight: 600;
  background-color: var(--duct-tape-grey);
  overflow-y: auto;
}

.format-option,
.day,
.week-day,
.occurence {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--stepwork-pencil-lead);
  width: 100%;
  padding: 10px;
}

.format-option:hover,
.day:hover,
.week-day:hover,
.occurence:hover {
  background-color: var(--silver-medallion-3o);
}

.format-selected,
.day-selected,
.week-day-selected,
.occurence-selected {
  background-color: var(--silver-medallion-6o);
}

.format-selected:hover,
.day-selected:hover,
.week-day-selected:hover,
.occurence-selected:hover {
  background-color: var(--silver-medallion);
}

#day-of-month-frequency-button,
#format-button {
  border-radius: 5px;
  font-weight: 600;
  background-color: var(--duct-tape-grey);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
  padding: 10px;
  gap: 10px;
  height: 60px;
  width: 100%;
}

.format-text {
  flex: 10;
  text-align: center;
  padding-left: 20px;
  color: var(--stepwork-pencil-lead);
}

#format-confirmation-button {
  color: var(--surrender-white);
  background-color: var(--sixty-day-green);
  display: flex;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  font-weight: 600;
  height: 40px;
}

#format-confirmation-button:hover {
  background-color: var(--sixty-day-green-hover);
}

#add-day-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 35px;
  border: 1px solid #ccc;
  border-radius: 10px;
  gap: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 2;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 350px;
}

#add-day-title {
  font-weight: 600;
  color: var(--stepwork-pencil-lead);
}

#day-container {
  width: 100%;
  position: relative;
}

#day-button {
  border-radius: 5px;
  font-weight: 600;
  background-color: var(--duct-tape-grey);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
  padding: 10px;
  gap: 10px;
  height: 60px;
  width: 100%;
}

#day-dropdown {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  background-color: var(--surrender-white);
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  width: 100%;
  z-index: 3;
  height: 80px;
}

#day-container #days-of-the-week {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  overflow-y: auto;
  font-weight: 600;
  background-color: var(--duct-tape-grey);
  border-top: solid 0.3px var(--two-or-more-years);
  border-bottom-right-radius: 5px;
}

#day-confirmation-button {
  color: var(--surrender-white);
  background-color: var(--sixty-day-green);
  display: flex;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  font-weight: 600;
  height: 40px;
}

#day-confirmation-button:hover {
  background-color: var(--sixty-day-green-hover);
}

.overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--two-or-more-years-5o);
  height: 100%;
  width: 100%;
  z-index: 999999999999;
  display: none;
}

#group-popup {
  overflow-y: auto;
}

#group-popup .popup {
  height: min-content;
  /* min-height: 90vh; */
  gap: 20px;
}

#group-popup-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: var(--m);
  font-weight: 600;
  width: 100%;
  color: var(--stepwork-pencil-lead);
}

#contact-information-area {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

#contact-information-area input,
#meeting-information-area input {
  outline: none;
  border: none;
}

#contact-information-title {
  width: 100%;
  font-size: var(--s);
  font-weight: 550;
  color: var(--stepwork-pencil-lead);
}

.icon {
  /* flex: 1; */
  width: 50px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#group-popup .icon {
  background-color: var(--surrender-white);
}

.icon img {
  height: 20px;
  width: auto;
}

.left-border-radius {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.right-border-radius {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

#name-and-email {
  padding: 5px;
  gap: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--duct-tape-grey);
  border-radius: 15px;
  width: 100%;
  height: 40px;
}

#name {
  flex: 5;
  height: 100%;
}

#name input {
  width: 100%;
  height: 100%;
  color: var(--stepwork-pencil-lead);
}

#email {
  flex: 5;
  height: 100%;
}

#email input {
  width: 100%;
  height: 100%;
  color: var(--stepwork-pencil-lead);
}

#phone-and-position {
  padding: 5px;
  gap: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--duct-tape-grey);
  border-radius: 15px;
  width: 100%;
  height: 40px;
}

#phone {
  flex: 5;
  height: 100%;
}

#phone input {
  width: 100%;
  height: 100%;
  color: var(--stepwork-pencil-lead);
}

#position {
  flex: 5;
  height: 100%;
  position: relative;
  color: var(--stepwork-pencil-lead);
}

#meeting-information-area {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

#meeting-information-title {
  width: 100%;
  font-size: var(--s);
  font-weight: 550;
  color: var(--stepwork-pencil-lead);
}

#group-name {
  padding: 5px;
  gap: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--duct-tape-grey);
  border-radius: 15px;
  width: 100%;
  height: 40px;
}

#group {
  flex: 11;
  height: 100%;
}

#group input {
  width: 100%;
  height: 100%;
  color: var(--stepwork-pencil-lead);
}

#group-date-and-days {
  padding: 5px;
  gap: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--duct-tape-grey);
  border-radius: 15px;
  width: 100%;
  height: 40px;
}

#group-date {
  flex: 3;
  height: 100%;
}

#group-date input {
  width: 100%;
  height: 100%;
  color: var(--stepwork-pencil-lead);
}

#group-day {
  flex: 7;
  height: 100%;
  max-width: 60%;
}

#add-day-button {
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
}

#days {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 3px;
  overflow-x: auto;
  background-color: var(--surrender-white);
  width: 100%;
  height: 100%;
  gap: 10px;
}

#day-placeholder {
  color: #a9a9a9;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
}

.day-added {
  color: var(--surrender-white);
  background-color: var(--sixty-day-green);
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  gap: 5%;
  min-width: 120px;
}

.day-text {
  width: 75%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.day-icon {
  width: 20%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

#group-time {
  padding: 5px;
  gap: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--duct-tape-grey);
  border-radius: 15px;
  width: 100%;
  height: 40px;
}

#time-slider-container {
  background-color: var(--surrender-white);
  height: 100%;
  flex: 11;
}

#time-slider-container .double-slider {
  margin-top: 9px;
  margin-left: 20px;
  margin-right: 30px;
}

#group-address {
  padding: 5px;
  gap: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--duct-tape-grey);
  border-radius: 15px;
  width: 100%;
  height: 40px;
}

#address {
  flex: 7;
  height: 100%;
}

#address input {
  width: 100%;
  height: 100%;
  color: var(--stepwork-pencil-lead);
}

#zipcode {
  flex: 2;
  height: 100%;
}

#zipcode input {
  width: 100%;
  height: 100%;
  color: var(--stepwork-pencil-lead);
}

#city {
  flex: 3;
  height: 100%;
}

#city input {
  width: 100%;
  height: 100%;
  color: var(--stepwork-pencil-lead);
}

#group-format {
  padding: 5px;
  gap: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--duct-tape-grey);
  border-radius: 15px;
  width: 100%;
  height: 60px;
}

#format {
  flex: 11;
  height: 100%;
}

#format #formats {
  width: 100%;
  height: 100%;
  background-color: var(--surrender-white);
  padding: 5px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
}

#formats-placeholder {
  color: #a9a9a9;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
}

.format-added {
  background-color: var(--sixty-day-green);
  color: var(--surrender-white);
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 5px;
  width: 130px;
  font-size: small;
}

.recurrence {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--stepwork-pencil-lead);
  width: 100%;
  padding: 3px;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
}

.recurrence::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  /* Thickness of the dash */
  background: repeating-linear-gradient(to right,
      var(--surrender-white),
      var(--surrender-white) 10px,
      transparent 10px,
      transparent 20px);
}

.recurrence-text {
  width: 90%;
  text-align: center;
  color: var(--surrender-white);
}

.remove-format {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 10%;
  cursor: pointer;
}

.remove-format:hover path {
  fill: #dedede;
}

.format-type {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px;
  color: var(--surrender-white);
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
}

#add-format-button {
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
}

#group-area-accessibility-and-smoking {
  padding: 5px;
  gap: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--duct-tape-grey);
  border-radius: 15px;
  width: 100%;
  height: 40px;
}

#group-area {
  flex: 5;
  width: 100%;
  height: 100%;
  position: relative;
}

#group-area input {
  width: 100%;
  height: 100%;
  color: var(--stepwork-pencil-lead);
}

#accessibility {
  flex: 2;
  width: 100%;
  height: 100%;
  position: relative;
}

#smoking {
  flex: 2;
  width: 100%;
  height: 100%;
  position: relative;
}

#group-comments {
  padding: 5px;
  gap: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--duct-tape-grey);
  border-radius: 15px;
  width: 100%;
  height: 100px;
}

#group-comments textarea {
  width: 100%;
  height: 100%;
  outline: none;
  border: none;
  border-radius: 10px;
  color: var(--stepwork-pencil-lead);
  resize: none;
}

#area-button,
#accessibility-button,
#smoking-button,
#position-button {
  background-color: var(--surrender-white);
  color: var(--stepwork-pencil-lead);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
}

#area-dropdown,
#accessibility-dropdown,
#smoking-dropdown,
#position-dropdown {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  overflow-y: auto;
  top: 100%;
  background-color: var(--surrender-white);
  border-radius: 5px;
  min-width: 100%;
  z-index: 3;
  flex-direction: column;
  box-shadow: 0 0 0.15rem var(--new-jersey-chrome);
  height: 100px;
}

#accessibility-dropdown,
#smoking-dropdown {
  height: 80px;
}

.area-option,
.accessibility-option,
.smoking-option,
.position-option {
  color: var(--stepwork-pencil-lead);
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.area-option:hover,
.accessibility-option:hover,
.smoking-option:hover,
.position-option:hover {
  background-color: var(--silver-medallion-3o);
}

.area-selected,
.accessibility-selected,
.smoking-selected,
.position-selected {
  background-color: var(--silver-medallion-6o);
}

.area-selected:hover,
.accessibility-selected:hover,
.smoking-selected:hover,
.position-selected:hover {
  background-color: var(--silver-medallion);
}

#meeting-list-popup {
  color: var(--stepwork-pencil-lead);
}

#meeting-list-popup .popup {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
}

#meeting-list-title {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-weight: 600;
  font-size: var(--m);
  border-bottom: solid 1px var(--stepwork-pencil-lead);
  width: 100%;
  padding-bottom: 10px;
  height: 10%;
}

#meeting-list-body {
  margin-left: 30px;
  margin-right: 30px;
  display: flex;
  height: 90%;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

#area-map {
  flex: 1;
  gap: 5px;
  height: 100%;
}

#area-map svg {
  height: 100%;
}

#meeting-list-details {
  flex: 1.5;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

#information-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 3;
  padding: 5px;
  width: 100%;
  border-radius: 10px;
  background-color: var(--silver-medallion-2o);
}

#information {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5px;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  background-color: var(--surrender-white);
}

#options {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
  font-weight: 600;
}

#meeting-type-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  width: 100%;
  border-radius: 10px;
  background-color: var(--silver-medallion-2o);
}

#meeting-type {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 5px;
  width: 100%;
  border-radius: 10px;
  background-color: var(--surrender-white);
}

#in-person {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 5px;
  gap: 5px;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
}

#virtual {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 5px;
  gap: 5px;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
}

#readings-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  width: 100%;
  border-radius: 10px;
  background-color: var(--silver-medallion-2o);
}

#readings {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 5px;
  width: 100%;
  border-radius: 10px;
  background-color: var(--surrender-white);
}

#with-readings {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 5px;
  gap: 5px;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
}

#without-readings {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 5px;
  gap: 5px;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
}

#areas-container {
  flex: 7;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  border-radius: 10px;
  width: 100%;
  max-height: 50%;
  background-color: var(--silver-medallion-2o);
}

#areas-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  padding: 5px;
  gap: 15px;
  border-radius: 10px;
  width: 100%;
  background-color: var(--surrender-white);
}

#areas-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: var(--s);
  width: 100%;
}

#areas {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  overflow-y: auto;
  width: 100%;
}

.area {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  padding: 10px;
  width: 48%;
  font-weight: 600;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
}

.select {
  display: flex;
  justify-content: center;
  align-items: center;
}

.select svg {
  width: 40px;
  height: 40px;
}

#download-button {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  border-radius: 10px;
  background-color: var(--silver-medallion-6o);
  width: 100%;
  font-weight: 600;
  font-size: var(--s);
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
  min-height: 60px;
  max-height: 60px;
}

#download-button:hover {
  background-color: var(--silver-medallion);
}

#group-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  font-weight: 600;
}

#save-group {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--sixty-day-green);
  border-radius: 10px;
  color: var(--surrender-white);
  width: 120px;
  height: 40px;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
}

#close-group {
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 3px var(--sixty-day-green);
  border-radius: 10px;
  color: var(--sixty-day-green);
  width: 120px;
  height: 40px;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
}

#save-group:hover {
  background-color: var(--sixty-day-green-hover);
}

#close-group:hover {
  border: solid 3px var(--sixty-day-green-hover);
  color: var(--sixty-day-green-hover);
}

@media (max-width: 1300px) {
  /* #areas-container {
    max-height: 200px;
  } */

  .select svg {
    height: 20px;
    width: 20px;
  }

  .area-name {
    font-size: 0.75rem;
  }
}

@media (max-width: 1200px) {
  #map-meeting-info {
    width: 350px;
    bottom: 30px;
    right: 30px;
  }

  #address-and-distance {
    gap: 10px;
  }

  #address-and-distance>.text {
    width: 52%;
  }

  .area {
    padding: 5px;
  }
}

@media (max-width: 1050px) {
  #meeting-list-popup .popup {
    width: 90%;
  }
}

@media (max-width: 900px) {

  #area-map {
    display: none;
  }

  #group-popup .popup {
    width: 90%;
  }
}

@media (max-height: 850px) {
  .popup {
    padding: 20px;
  }

  #meeting-information-area {
    justify-content: flex-start;
    overflow-y: auto;
  }
}

@media (max-width: 800px) {
  #search-bar {
    width: 80%;
  }

  #add-a-meeting-button,
  #meeting-list-button {
    width: 70%;
  }

  #group-day {
    max-width: 50%;
  }
}

@media (max-height: 750px) {

  #group-popup .popup {
    margin-top: 60px;
  }

  #areas-container {
    max-height: 40%;
  }

  .spacer {
    display: block;
  }
}

@media (max-width: 700px) {

  #add-a-meeting-button,
  #meeting-list-button {
    font-size: var(--xs);
  }

  #add-a-meeting-button-icon svg,
  #meeting-list-button-icon svg {
    height: 20px;
  }

  #accessibility-dropdown,
  #smoking-dropdown,
  #area-dropdown {
    width: 150%;
  }
}

@media (max-height: 650px) {
  #group-popup .popup {
    margin-top: 90px;
  }
}


@media (max-width: 600px) {
  .meeting-details {
    font-size: 0.75rem;
  }

  .description {
    display: none;
  }

  #meeting-list-popup .popup {
    width: 90%;
  }

  #area-dropdown {
    width: 200%;
  }
}

@media (max-width: 550px) {
  #area-dropdown {
    width: 200px;
    transform: translateX(-10%);
  }
}

@media (max-width: 450) {

  #add-a-meeting-button,
  #meeting-list-button {
    height: 40px;
    font-size: 0.75rem;
  }

  #add-a-meeting-button-icon svg,
  #meeting-list-button-icon svg {
    height: 10px;
  }
}