@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

.user-profile-page {
  background-color: #ffffff;
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 999px;
}

.user-profile {
  width: 50px; /* Adjusted for the example */
  height: 50px; /* Adjusted for the example */
  border-radius: 50%;
  overflow: hidden;
}

.profile-pic {
  border-radius: 50%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

* {
  margin: 0;
  padding: 0;
  font-family: Inter, sans-serif;
}

body {
  overflow-x: hidden;
  background-color: #f5f5f5;
}
a {
  text-decoration: none;
  color: #e2e2e2;
}

/*nav-styles*/

.navigation-container {
  z-index: 2;
  background-color: #003459;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.time-style {
  font-size: 20px;
  padding: 1rem;
}

#pst-container {
  color: #f1f1f1;
  display: flex;
  align-items: center;
  padding: 0 1rem 0 0;
}

/*menu-styles*/

.menu-container {
  z-index: 1;
  background-color: #002e4f;
  position: fixed;
  margin-top: 4rem;

  min-width: 220px;
  min-height: 100vh;
  color: #f1f1f1;
}
.nav-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: sticky;
}

.user-circle {
  margin: 1.5rem 0 0.5rem;
}

.user-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  gap: 3px;
}

.nav-aside-hr-line {
  border-width: none;
  border-color: #f1f1f1;
  width: 170px;
}

.nav-aside-headers {
  font-weight: 400;
  color: #b3b3b3;
  font-size: 12px;
  padding-left: 0.5rem;
}

.menu-section {
  margin: 2rem;
}

.menu-items {
  padding: 0.7rem;
  transition: all 0.5s;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.menu-items:hover {
  background-color: #012239;
  transition: all 0.5s;
}

.menu-icons {
  padding-right: 0.5rem;
}

.general-section {
  margin: 2rem;
  min-width: 197.312px;
}

/*Welcome-text*/
.headers {
  display: flex;
  flex-direction: column;
  margin: 1rem 0rem 1rem 0;
}

.m-headers {
  color: #404040;
  font-size: 14px;
}
.s-headers {
  color: #1f4276;
  font-size: 32px;
}

.headers hr {
  width: 100%;
  margin: 1rem 20rem;
}

.main-header {
  color: #404040;
  font-size: 14px;
  margin-top: 7rem;
  margin-left: 21rem;
}
.sub-header {
  color: #1f4276;
  font-size: 32px;
  margin-left: 21rem;
}

.user-landing {
  width: 100%;
}
.user-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-header div a {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.section-title {
  color: #002e4f;
  font-size: 1rem;
  font-weight: 700;
}
.section-subtitle {
  color: #002e4f;
  font-size: 0.75rem;
  font-weight: 600;
}

.ateneo-image {
  width: 100%;
  height: auto;
}

.welcome-text {
  position: absolute;
  top: 60%;
  margin-left: 30rem;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.welcome-text strong {
  font-size: 3rem;
  color: white;
}

.welcome-text p {
  font-size: 1rem;
  color: white;
  margin-top: 10px;
}

.main-user-containter {
  display: flex;
  margin-left: 21rem;
  gap: 4rem;
}

/*home overview*/

/*medical services offered*/
.option-container {
  height: 110px;
  width: 285px;
  background-color: #003459;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  gap: 0.75rem;
}
.option-container-one {
  height: 110px;
  width: 285px;
  background-color: #004678;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  gap: 0.75rem;
}

.option-container-two {
  height: 110px;
  width: 285px;
  background-color: #005897;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  gap: 0.75rem;
}

.option-container div p {
  font-size: 0.75rem;
}
.option-container div span {
  font-size: 1.25rem;
  font-weight: 600;
}

.option-container-one div p {
  font-size: 0.75rem;
}
.option-container-one div span {
  font-size: 1.25rem;
  font-weight: 600;
}

.option-container-two div p {
  font-size: 0.75rem;
}
.option-container-two div span {
  font-size: 1.25rem;
  font-weight: 600;
}
.medical-services {
  margin: 1rem 0 2rem 0;
  display: flex;
  gap: 1.5rem;
}

.medical-container {
  display: flex;
  flex-direction: row; /* Display items horizontally */
  justify-content: space-between; /* Space items evenly */
}

.health-checkup {
  cursor: pointer;
  position: relative;
  transition: all 0.5s;
}
.health-checkup:hover {
  transition: all 0.5s;
  transform: scale(1.02);
  border-radius: 20px;
  box-shadow: 0 0 50px rgba(60, 103, 128, 0.5);
}

.announcements-container {
  width: 250px;
  height: 250px;
  background-color: #ffffff;
  margin: 2rem;
  border-radius: 20px;
  border: #002e4f solid 2px;
  overflow: hidden;

  display: flex;
  flex-direction: column;
}

.announcement-items {
  width: 90%;
  align-self: center;
}
.right-side {
  margin-top: 13rem;
  margin-left: 3rem;
}

.right-side-items {
  display: flex;
  color: #ffb800;
  background-color: #003459;
  font-size: 14px;
  padding: 0.5rem 0 0.5rem 1rem;
}
.footnote {
  font-size: 10px;
  padding: 0 0 0 2rem;
}

/*health-staff-schedule*/
.health-staff-duty-container {
  display: flex;
  align-content: center;
  gap: 1.25rem;
  margin: 1rem 0;
}

.health-staff-schedule {
  display: flex;
  flex-wrap: wrap;
  align-content: center;

  justify-content: center;
  width: 590px;
  height: 360px;
  gap: 1rem;
  background-color: #ffffff;
  border-radius: 10px;
}

.staff-container {
  display: flex;
  align-items: center;
  padding-left: 2rem;
  width: 240px;
  height: 55px;
  background-color: #f2f7fc;
  border-radius: 10px;
  gap: 0.75rem;
  transition: box-shadow 0.3s ease;
}

.staff-container div span {
  font-size: 1rem;
  color: #003459;
  font-weight: 600;
}

.staff-container div p {
  font-size: 0.75rem;
  color: #7f7b82;
  font-weight: 500;
}

.health-staff-chosen {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 290px;
  height: 360px;
  background-color: #ffffff;
  border-radius: 10px;
}

.staff-chosen {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  flex-direction: column;
  gap: 1rem;
}

.staff-chosen img {
  height: 3rem;
}

.staff-chosen-details span {
  font-weight: 600;
  color: #003459;
}

.staff-chosen-details p {
  font-weight: 500;
  color: #7f7b82;
  font-size: 0.75rem;
}

.staff-specific-schedule span {
  font-weight: 600;
  color: #003459;
}

.staff-specific-schedule p {
  font-weight: 400;
  color: #0e264a;
}

/*Effects*/
.staff-chosen-details,
.staff-specific-schedule {
  transition: opacity 1s ease-in-out;
  opacity: 0;
}
.fade-in {
  opacity: 1;
}
.fade-out {
  opacity: 0;
}

/*aside styles*/
.trademark {
  font-size: 0.75rem;
  font-weight: 500;
  color: #404040;
}

.office-hours {
  margin-top: 5.5rem;
}
.office-hours img {
  height: 1rem;
}
.office-hours div {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.office-status {
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  height: 55px;
  background-color: #ffffff;
  border-radius: 10px;
}
.office-status span {
  font-weight: 600;
}
.status {
  background-color: #a3f5b4;
  border-radius: 0.75rem;
  padding: 0.25rem 1rem;
  margin: auto 0;
}
.status p {
  color: #206d30;
}

.status-open {
  background-color: #a3f5b4; /* Green background */
  color: #206d30; /* Green text */
}

.status-closed {
  background-color: #f5a3a3; /* Red background */
  color: #6d2020; /* Red text */
}

.office-schedule-container {
  width: 290px;
  height: 135px;
  padding: 1rem;
  background-color: #ffffff;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.office-schedule-container div span {
  font-size: 0.9rem;
}
.office-schedule {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
}
.office-schedule-container p {
  font-size: 0.75rem;
}

.office-schedule div span {
  font-size: 1rem;
  font-weight: 600;
}
.office-schedule div p {
  font-size: 0.9rem;
  margin: 0.25rem 0;
}

.selected {
  box-shadow: -4px 0px 20px rgba(0, 52, 89, 0.3);
}
.staff-container {
  cursor: pointer;
  transition: opacity 1s ease-in-out;
}
.staff-container.fade-in {
  opacity: 1;
}
.staff-container.fade-out {
  opacity: 0.5;
}
.staff-container.selected {
  transition: all 1s ease-in-out;
}

/* Settings CSS */
.main-setting-container {
  margin-top: 3rem;
}
.settings-container {
  background-color: #f2f2f2;
  border-radius: 20px;
  padding: 50px;
  width: 70vw;
  height: auto;
  margin: rem 0px;
}

.settings-container h2 {
  margin-bottom: 15px;
}

.settings-container hr {
  color: #1f4276;
  margin: 0px;
}

.right-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.right-content button {
  padding: 5px 40px;
  color: #5fa8d3;
  background-color: #cae9ff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.5s;
}
.button2 {
  padding: 5px 40px;
  color: #404040;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.5s;
}
.right-content button:hover {
  background-color: #b4e0ff;
  transition: all 0.5s;
}

.right-content input {
  padding: 5px 10px;
  color: #002e4f;
  background-color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 20px;
}

.right-content input:focus {
  outline: none;
}

.grid-container {
  display: flex;
  justify-content: space-between;
  padding: 25px 20px;
  align-items: center;
}

.user-profile-page {
  background-color: #ffffff;
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 999px;
}

.custom-swal-button {
  background-color: #1f4276;
  color: white;
}
