.footer-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  background-color: #fff;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  transition: transform 0.3s ease;
  z-index: 1;
}

.nav-item {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Increase size for all icons except the plus button */
.nav-item .icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

/* Plus button icon size remains the same */
.footer-slide-up .add-btn,
.add-btn {
  width: 50px;
  height: 50px;
  background-color: var(--color--main);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  top: -25px;
}

.add-btn .icon {
  width: 25px;
  height: 25px;
}

/* Hide footer on scroll */
#footerNav.hidden {
  transform: translateY(100%);
}

.nav-item img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color--sub);
}

/* 계정전환모달 */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 40px 20px 30px 20px;
  width: 100%;
  text-align: center;
  border-radius: 10px 10px 0 0;
  position: absolute;
  bottom: -100%;
  transition: 0.1s;
}

.modal.show .modal-content {
  bottom: 0;
}

#accountConversion .row {
  margin-bottom: 24px;
  gap: 8px;
}

#accountConversion img {
  width: 40px;
  height: 40px;
}

#accountConversion .mobile-page__input {
  gap: 8px;
}

#accountConversion .beautist {
  display: flex;
  gap: 4px;
  font-size: 14px;
  color: #969696;
}