.rightDrawer {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  height: 100vh;
  background-color: white;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  width: 60%;
  border-left: 1px solid #e5e7eb;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.rightDrawerOpen {
  transform: translateX(0);
}

.rightDrawerClosed {
  transform: translateX(100%);
}

.userHeader {
  padding: 12px 16px;
  border-bottom: 1px solid #e5e7eb;
}

.userTitle {
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  color: #1f2937;
  margin-top: 8px;
}

.balanceSection {
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.balanceHeader {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.iconContainer {
  width: 24px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iconContainer img {
  padding: 4px;
}

.balanceTitle {
  font-weight: 700;
  font-size: 16px;
}

.balanceRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  margin-left: 8px;
}

.balanceRow:last-child {
  margin-bottom: 0;
}

.balanceLabel {
  font-size: 12px;
  color: black;
}

.balanceValue {
  font-size: 14px;
  font-weight: 500;
  color: black;
  text-align: right;
}

.balanceValueRed {
  font-size: 14px;
  font-weight: 500;
  color: #dc2626;
  text-align: right;
}

.menuContainer {
  flex: 1;
  overflow-y: auto;
}

.menuItem {
  display: flex;
  align-items: center;
  padding: 8px;
  margin: 0 8px;
  border-bottom: 1px solid #e5e7eb;
  cursor: pointer;
}

.menuItem:hover {
  background-color: #f9fafb;
}

.menuItemLast {
  border-bottom: 1.5px solid black;
}

.menuItemText {
  color: black;
  font-weight: 700;
}

.signOutSection {
  border-top: 1px solid #e5e7eb;
}

.signOutItem {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  cursor: pointer;
}
.signOutContainer {
  flex-shrink: 0;
  border-top: 1px solid #e5e7eb;
  background-color: white;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.signOutItem:hover {
  background-color: #f9fafb;
}

.signOutText {
  color: black;
  font-weight: 700;
  font-size: 16px;
}

