.user-menu {
  position: absolute;
  right: 5px;
  display: flex;
  align-items: center;
  gap: 5px; /* 10px → 15px */
  overflow: visible;
  z-index: 1001;
}

.welcome {
  font-size: 14px; /* 16px → 24px */
  margin-right: 5px; /* 10px → 15px */
  margin-left: 5px;  /* 10px → 15px */
}

.dropbtn {
  border: 1px solid #ccc;
  padding: 4px 9px; /* 6px 10px → 9px 15px */
  cursor: pointer;
  font-size: 24px; /* 16px → 24px */
  white-space: nowrap;
  border-radius: 6px; /* 4px → 6px */
  transition: background-color 0.3s ease;
}

.user-dropdown {
  position: relative;
}

.user-dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% - 6px);

  background: rgba(253, 0, 0, 0.356); /* 붉은 계열 유리 느낌 */
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);

  min-width: 225px; /* 150px → 225px */
  padding: 8px 0; /* 8px → 12px */
  border-radius: 18px; /* 12px → 18px */
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);

  z-index: 1002;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.25s ease-in-out;
}

.user-dropdown-content a {
  color: #ffffff;
  padding: 6px 9px; /* 4px 6px → 6px 9px */
  font-size: 14px; /* 텍스트도 확대 */
  text-decoration: none;
  display: block;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.749), inset 0 0 12px rgba(0, 0, 0, 0.613);
}

.user-dropdown-content a:hover {
  background-color: #ff2f007d;
  border-radius: 18px; /* 12px → 18px */
}

.user-dropdown:hover .user-dropdown-content {
  display: block;
}


