.mypage_wrapper {
  display: flex;
  max-width: 100%;
  padding: 35px 70px;
  background-color: white;
  min-height: 600px;
}

.mypage_sidebar {
  width: 250px;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
}

.mypage_sidebar_link {
  padding: 12px 0;
  color: #666;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-weight: 500;
  max-width: 70px;
}

.mypage_sidebar_link.active {
  border-bottom: 1px solid silver;
}

.mypage_logout_btn {
  padding: 12px 0;
  background-color: transparent;
  color: #666;
  border: none;
  font-size: 16px;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
  font-weight: 500;
}

.mypage_logout_btn:hover {
  color: #333;
}

.mypage_content {
  flex: 1;
  padding: 40px 30px 40px 100px;
}

.mypage_greeting {
  font-size: 16px;
  color: #333;
  margin-bottom: 30px;
}

.mypage_greeting_username {
  font-weight: 600;
}

.mypage_info_text {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 10px;
}

.dashboard_text {
  font-size: 16px;
}

.mypage_info_link {
  color: #a0b8ae;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.mypage_info_link:hover {
  color: #000;
  text-decoration: underline;
}

.coupon_header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.coupon_title1 {
  font-size: 24px;
  cursor: pointer;
}
.coupon_title2 {
  font-size: 14px;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .mypage_wrapper {
    flex-direction: column;
    padding: 20px;
  }

  .mypage_sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }

  .mypage_content {
    padding: 30px 0px;
  }
}
