* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 3.75vw;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(180deg, #00a8ff 0%, #00bfff 30%, #00d2ff 100%);
  min-height: 100vh;
  color: #333;
  overflow-x: hidden;
}

.page-wrap {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}

/* ========== 底层背景 ========== */
.bg-layer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/static/images/bg.png') no-repeat center top;
  background-size: 100% auto;
  z-index: -1;
}

/* ========== 顶部头图区域 ========== */
.header-section {
  position: relative;
}

.banner-img {
  width: 100%;
  display: block;
}

.header-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,168,255,0) 0%, rgba(0,168,255,0.3) 50%, rgba(0,168,255,0.85) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.1s;
}

/* ========== 跑马灯 ========== */
.marquee-wrap {
  background: rgba(255,255,255,0.2);
  border-radius: 2rem;
  padding: 0.3rem 1rem;
  margin: 0.6rem auto;
  max-width: 92%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  animation: marquee 12s linear infinite;
  color: #fff;
  font-size: 0.7rem;
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ========== 登录区域 ========== */
.login-section {
  padding: 0.8rem 1.2rem 0.6rem;
}

.login-tip {
  text-align: center;
  color: #fff;
  font-size: 0.75rem;
  margin-bottom: 0.6rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.phone-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  margin-bottom: 0.8rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.phone-label {
  font-size: 0.9rem;
  color: #333;
  margin-right: 0.4rem;
  white-space: nowrap;
}

.phone-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.9rem;
  outline: none;
  color: #333;
}

.phone-input::placeholder {
  color: #ff6b6b;
}

/* 登录按钮 */
.login-btn-wrap {
  text-align: center;
  margin-bottom: 0.6rem;
}

.login-gif {
  width: 70%;
  max-width: 320px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}

.login-gif:active {
  transform: scale(0.97);
}

.quick-login-btn {
  text-align: center;
  color: #fff;
  font-size: 0.75rem;
  margin-top: 0.6rem;
  padding: 0.45rem 0;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  width: 70%;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  transition: background 0.2s, border-color 0.2s;
}

.quick-login-btn:active {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* 协议勾选 */
.agreement-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 0.65rem;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.agreement-row input[type="checkbox"] {
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 0.3rem;
  margin-top: 0.05rem;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #ff6b6b;
}

.agreement-row a {
  color: #fff;
  text-decoration: underline;
}

/* ========== 底部信息 ========== */
.footer-info {
  text-align: center;
  font-size: 0.6rem;
  color: #fff;
  padding: 0.4rem 1rem;
  line-height: 1.6;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* ========== 权益卡片区域 ========== */
.cards-section {
  padding: 0.6rem 0.8rem 2rem;
}

.card-item {
  position: relative;
  margin-bottom: 0.6rem;
  cursor: pointer;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.1s;
}

.card-item:active {
  transform: scale(0.98);
}

.card-item img {
  width: 100%;
  display: block;
}

/* 已领取遮罩 */
.claim-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.claim-mask.show {
  opacity: 1;
}

.claim-text {
  background: rgba(255,255,255,0.95);
  color: #666;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
}

/* ========== 悬浮菜单 ========== */
.float-menu {
  position: fixed;
  right: 0.5rem;
  bottom: 3rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.float-btn {
  background: rgba(255,255,255,0.95);
  border-radius: 2rem;
  padding: 0.4rem 0.8rem;
  font-size: 0.7rem;
  color: #0066cc;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  animation: float 3s ease-in-out infinite;
  border: 1px solid rgba(0,102,204,0.2);
}

.float-btn:nth-child(2) { animation-delay: 0.5s; }
.float-btn:nth-child(3) { animation-delay: 1s; }
.float-btn:nth-child(4) { animation-delay: 1.5s; }
.float-btn:nth-child(5) { animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ========== Toast ========== */
.toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.toast.show {
  opacity: 1;
}

/* ========== Loading ========== */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.loading-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ========== 子页面通用头部 ========== */
.page-header {
  background: linear-gradient(90deg, #0066cc, #00bfff);
  padding: 1rem;
  display: flex;
  align-items: center;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}

.back-btn {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  margin-right: 1rem;
}

.page-title {
  font-size: 1.1rem;
  font-weight: bold;
  flex: 1;
  text-align: center;
  margin-right: 2rem;
}

/* ========== 用户管理 ========== */
.admin-page {
  min-height: 100vh;
  padding-bottom: 2rem;
}

.admin-search {
  display: flex;
  gap: 0.5rem;
  padding: 0.8rem;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid #e5e7eb;
}

.admin-search input,
#refundAmount,
#refundReason {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.65rem 0.75rem;
  font-size: 0.8rem;
  outline: none;
  background: #fff;
}

.admin-search button,
.admin-primary-btn,
.admin-link-btn {
  border: none;
  border-radius: 0.5rem;
  padding: 0.65rem 0.9rem;
  font-size: 0.8rem;
  font-weight: bold;
  cursor: pointer;
}

.admin-search button,
.admin-primary-btn {
  background: linear-gradient(135deg,#009CFF,#0066CC);
  color: #fff;
}

.admin-primary-btn {
  width: 100%;
  margin-top: 0.55rem;
}

.admin-primary-btn:disabled {
  background: #cbd5e1;
  cursor: not-allowed;
}

.admin-link-btn {
  width: 100%;
  margin-top: 0.65rem;
  background: #eff6ff;
  color: #0066cc;
}

.admin-section {
  padding: 0.8rem;
}

.admin-empty,
.admin-user-card,
.admin-record {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(0,102,204,0.12);
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.admin-empty {
  padding: 1.5rem 1rem;
  text-align: center;
  color: #64748b;
  font-size: 0.85rem;
}

.admin-user-card {
  padding: 0.85rem;
  margin-bottom: 0.75rem;
}

.admin-user-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.45rem;
}

.admin-phone {
  font-size: 1rem;
  font-weight: bold;
  color: #0f172a;
}

.admin-meta {
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.7;
  word-break: break-all;
}

.admin-time-line {
  display: block;
  margin-top: 0.08rem;
}

.admin-badge {
  flex-shrink: 0;
  background: #ecfeff;
  color: #087a8f;
  border: 1px solid #a5f3fc;
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  font-size: 0.65rem;
}

.admin-order-box {
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid #e5e7eb;
}

.admin-order-line {
  font-size: 0.78rem;
  color: #0f172a;
  line-height: 1.6;
  word-break: break-all;
}

.admin-detail {
  margin-top: 0.8rem;
  border-top: 1px solid #e5e7eb;
  padding-top: 0.75rem;
}

.admin-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin: 0 0 0.75rem;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,102,204,0.12);
  border-radius: 0.5rem;
  padding: 0.25rem;
}

.admin-tab {
  border: none;
  background: transparent;
  color: #64748b;
  border-radius: 0.4rem;
  padding: 0.55rem 0.4rem;
  font-size: 0.78rem;
  font-weight: bold;
}

.admin-tab.active {
  background: linear-gradient(135deg,#009CFF,#0066CC);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,102,204,0.2);
}

.admin-tab-panel {
  min-height: 6rem;
}

.admin-subtitle,
.admin-dialog-title {
  font-size: 0.85rem;
  font-weight: bold;
  color: #0f172a;
  margin: 0.55rem 0;
}

.admin-record {
  padding: 0.65rem;
  margin-bottom: 0.55rem;
  box-shadow: none;
}

.admin-record-title {
  font-size: 0.78rem;
  font-weight: bold;
  color: #0f172a;
  line-height: 1.6;
  word-break: break-all;
}

#refundReason {
  margin-top: 0.55rem;
  resize: vertical;
  min-height: 4.5rem;
  font-family: inherit;
}

.admin-refund-options {
  margin-top: 0.7rem;
  padding: 0.65rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background: #f8fafc;
}

.admin-options-title {
  font-size: 0.78rem;
  font-weight: bold;
  color: #0f172a;
  margin-bottom: 0.45rem;
}

.admin-option-row {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 0.45rem 0;
  border-top: 1px solid #e5e7eb;
}

.admin-option-row:first-of-type {
  border-top: none;
}

.admin-option-row input {
  width: 0.85rem;
  height: 0.85rem;
  margin-top: 0.08rem;
  flex-shrink: 0;
  accent-color: #009CFF;
}

.admin-option-row span {
  display: block;
  min-width: 0;
}

.admin-option-row strong {
  display: block;
  font-size: 0.74rem;
  color: #0f172a;
  line-height: 1.4;
}

.admin-option-row em {
  display: block;
  margin-top: 0.12rem;
  font-style: normal;
  font-size: 0.66rem;
  color: #64748b;
  line-height: 1.45;
}

/* ========== 用户信息栏 ========== */
.user-bar {
  background: rgba(255,255,255,0.95);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid #eee;
}

.user-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #00bfff, #0066cc);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
}

.user-detail {
  flex: 1;
}

.user-phone {
  font-size: 0.9rem;
  color: #333;
  font-weight: bold;
}

.user-status {
  font-size: 0.75rem;
  color: #28a745;
  margin-top: 0.1rem;
}

/* ========== FAQ ========== */
.faq-list {
  padding: 1rem;
}

.faq-item {
  background: rgba(255,255,255,0.95);
  border-radius: 0.8rem;
  padding: 1rem;
  margin-bottom: 0.8rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-q {
  font-size: 0.9rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.faq-q::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  background: #0066cc;
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.faq-a {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.6;
  padding-left: 1.6rem;
}

.contact-section {
  background: rgba(255,255,255,0.95);
  border-radius: 0.8rem;
  padding: 1rem;
  margin: 1rem;
  text-align: center;
}

.contact-phone {
  font-size: 1.2rem;
  color: #0066cc;
  font-weight: bold;
}

.contact-label {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.3rem;
}

/* ========== 电话拨打弹窗 ========== */
.dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.dialog-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.phone-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #f5f5f5;
  border-radius: 0.8rem;
  width: 80%;
  max-width: 300px;
  z-index: 401;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s;
  overflow: hidden;
}

.phone-dialog.show {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.refund-dialog {
  width: 92%;
  max-width: 420px;
  max-height: 86vh;
}

.refund-dialog .dialog-content {
  max-height: 86vh;
  overflow-y: auto;
  text-align: left;
}

.dialog-title {
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  padding: 1rem 1rem 0.5rem;
}

.dialog-content {
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  padding: 0.5rem 1.5rem 1.2rem;
  line-height: 1.5;
}

.dialog-btns {
  display: flex;
  border-top: 1px solid #ddd;
}

.dialog-btn {
  flex: 1;
  padding: 0.8rem;
  border: none;
  background: transparent;
  font-size: 0.9rem;
  cursor: pointer;
  outline: none;
}

.dialog-btn.cancel {
  color: #333;
  border-right: 1px solid #ddd;
}

.dialog-btn.confirm {
  color: #0066cc;
  font-weight: bold;
}

.dialog-btn:active {
  background: rgba(0,0,0,0.05);
}

.bank-dialog {
  width: calc(100% - 2.4rem);
  max-width: 420px;
  background: #fff;
  border-radius: 0.62rem;
  overflow: visible;
}

.bank-dialog .dialog-content {
  padding: 2.15rem 1.65rem 1.25rem;
  text-align: left;
}

.bank-dialog-close {
  position: absolute;
  top: 0.55rem;
  right: 0.6rem;
  width: 1.5rem;
  height: 1.5rem;
  border: none;
  background: transparent;
  color: #a6a6a6;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  z-index: 1;
}

.bank-dialog-close:active {
  color: #666;
}

.bank-choice-step {
  min-height: 20rem;
}

.bank-form {
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
}

.bank-list {
  display: flex;
  flex-direction: column;
  max-height: 20.5rem;
  overflow-y: auto;
  padding: 0.1rem 0;
}

.bank-option {
  border: none;
  border-bottom: 1px solid #ededed;
  background: #fff;
  color: #111;
  border-radius: 0;
  min-height: 2.92rem;
  padding: 0.38rem 0.1rem;
  display: flex;
  align-items: center;
  gap: 0.68rem;
  cursor: pointer;
  font-size: 0.92rem;
  text-align: left;
  width: 100%;
}

.bank-option:last-child {
  border-bottom: none;
}

.bank-option:active {
  background: #f7f9fc;
}

.bank-logo-img,
.bank-logo-placeholder {
  width: 1.42rem;
  height: 1.42rem;
  flex-shrink: 0;
  border-radius: 50%;
}

.bank-logo-img {
  object-fit: contain;
  background: #f5f5f5;
}

.bank-logo-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1f68b7;
  color: #fff;
  font-size: 0.68rem;
  font-weight: bold;
}

.bank-logo-POST { background: #22a466; }
.bank-logo-BOC,
.bank-logo-ECITIC { background: #b6243a; }
.bank-logo-ABC,
.bank-logo-CMBC { background: #239b7e; }
.bank-logo-CMBCHINA { background: #b63333; }
.bank-logo-CIB,
.bank-logo-CCB { background: #155aa5; }
.bank-logo-BOCO { background: #4c5ab5; }

.bank-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
}

.bank-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.bank-loading,
.bank-empty {
  color: #777;
  font-size: 0.78rem;
  padding: 1.4rem 0;
  text-align: center;
}

.bank-form select,
.bank-form input {
  width: 100%;
  height: 1.95rem;
  padding: 0 0.82rem;
  border: 1px solid #d3d3d3;
  border-radius: 999px;
  font-size: 0.82rem;
  outline: none;
  background: #fff;
  color: #333;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.06);
}

.bank-form select:focus,
.bank-form input:focus {
  border-color: #1c7df2;
  box-shadow: 0 0 0 2px rgba(28,125,242,0.08), inset 0 1px 2px rgba(0,0,0,0.06);
}

.bank-form input[readonly] {
  background: #fff;
  color: #333;
}

.bank-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  padding-right: 2rem;
}

.bank-confirm-btn {
  width: 100%;
  height: 2.05rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(180deg, #2d96ff 0%, #1172ee 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 0.12rem;
  box-shadow: 0 0.18rem 0.5rem rgba(17,114,238,0.28);
}

.bank-confirm-btn:active {
  transform: scale(0.98);
}

.bank-reselect-btn {
  border: none;
  background: transparent;
  color: #777;
  font-size: 0.68rem;
  padding: 0.1rem 0 0;
  cursor: pointer;
}

.status-page {
  min-height: 100vh;
}

.status-panel {
  padding: 1rem;
}

.status-form {
  background: rgba(255,255,255,0.96);
  border-radius: 0.8rem;
  padding: 1rem;
  display: flex;
  gap: 0.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.status-form input {
  min-width: 0;
  flex: 1;
  height: 2rem;
  border: 1px solid #d6e2ee;
  border-radius: 0.45rem;
  padding: 0 0.7rem;
  font-size: 0.78rem;
  outline: none;
}

.status-form input:focus {
  border-color: #1172ee;
  box-shadow: 0 0 0 2px rgba(17,114,238,0.1);
}

.status-form button {
  width: 4rem;
  height: 2rem;
  border: none;
  border-radius: 0.45rem;
  background: #1172ee;
  color: #fff;
  font-size: 0.78rem;
  font-weight: bold;
  cursor: pointer;
}

.status-result {
  margin-top: 0.8rem;
  background: rgba(255,255,255,0.96);
  border-radius: 0.8rem;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.6rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: #eef4ff;
  color: #1172ee;
  font-size: 0.8rem;
  font-weight: bold;
  margin-bottom: 0.7rem;
}

.status-success {
  background: #e8f8ef;
  color: #159055;
}

.status-fail {
  background: #fff0f0;
  color: #d33b3b;
}

.status-doing,
.status-init {
  background: #fff7e6;
  color: #b56a00;
}

.status-row {
  min-height: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
  border-top: 1px solid #eef1f5;
  padding: 0.48rem 0;
  font-size: 0.72rem;
}

.status-row span {
  color: #6b7280;
  white-space: nowrap;
}

.status-row strong {
  color: #222;
  text-align: right;
  word-break: break-all;
  font-weight: 700;
}

/* ========== 响应式 ========== */
@media (min-width: 750px) {
  html {
    font-size: 28px;
  }
}

.user-info {
  position: fixed;
  top: 10px;
  right: 15px;
  display: flex;
  align-items: center;
  z-index: 100;
  cursor: pointer;
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.user-phone {
  margin-left: 8px;
  font-size: 14px;
  color: #333;
  background: rgba(255,255,255,0.9);
  padding: 4px 10px;
  border-radius: 14px;
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  min-width: 120px;
  display: none;
}

.user-dropdown.show {
  display: block;
}

.dropdown-item {
  padding: 12px 16px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  text-align: center;
}

.dropdown-item:hover {
  background: #f5f5f5;
}
