@charset "UTF-8";

body {
  /* background-color: #ececec; */
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
}

label {
  font-size: 14px;
}

.mypage-body {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.title-label {
  font-size: 20px;
  color: #373a3c;
  font-weight: 500;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
}

.menu_logo {
  max-width: 100px;
  height: auto;
}

.navBar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #004e97;
  height: 55px;
}

/* Menu styles */
.menu-container {
  display: flex;
  align-items: center;
}

.menu {
  position: relative;
  font-size: 14px;
  color: #373a3c;
  font-weight: bold;
  /* background-color: #ffffff; */
  padding: 10px;
  cursor: pointer;
  text-decoration: none;
}

.menu .arrow {
  width: 15px;
  height: auto;
  vertical-align: middle;
  margin-left: 10px;
}

.menu:hover {
  background-color: #6d99ce;
  color: #ffffff;
  text-decoration: none;
}

/* Submenu styles */
.submenu {
  display: none;
  position: absolute;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
  width: max-content;
  height: fit-content;
  border-radius: 5px;
}

.menu:hover .submenu {
  display: block;
}

.submenu a {
  font-size: 14px;
  color: #373a3c;
  font-style: medium;
  text-decoration: none;
  display: block;
  padding: 8px 16px;
}

.submenu a:hover {
  background-color: #e9ecef;
}

/* Footer styles */
footer {
  font-size: 12px;
  color: #373a3c;
  font-style: regular;
  padding: 10px;
  margin-top: auto;
  text-align: center;
}

/* Login Page styles*/
.login-title {
  text-align: center;
  color: #004e97;
  font-size: 32px;
  font-weight: 600;
  margin-top: 3%;
  margin-bottom: 2%;
}

.navbar-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  padding-left: 20px;
  cursor: pointer;
}

.navbar-menu {
  color: #ffffff;
}
