/* === App-specific overrides on top of base.css === */

/* Boot splash */
.boot-splash {
  position: fixed; inset: 0; background: #B2C7D9;
  display: flex; align-items: center; justify-content: center; z-index: 9999;
  transition: opacity .35s ease;
}
.boot-splash.hidden { opacity: 0; pointer-events: none; }
.boot-card { display:flex; flex-direction:column; align-items:center; gap:18px; animation: floatIn .6s ease; }
@keyframes floatIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.boot-logo { width: 92px; height: 92px; border-radius: 22%; object-fit: cover; box-shadow: 0 14px 36px rgba(0,0,0,.18); }
.boot-spinner {
  width: 28px; height: 28px; border: 3px solid rgba(0,0,0,.1); border-top-color: #333;
  border-radius: 50%; animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Auth modal (overlay over chat) */
.auth-modal { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 500; display: flex; align-items: center; justify-content: center; padding: 16px; backdrop-filter: blur(2px); }
.auth-modal.hidden { display: none; }
.auth-container { background: #fff; max-width: 380px; width: 100%; padding: 36px 24px 28px; display: flex; flex-direction: column; gap: 12px; border-radius: 16px; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,.25); max-height: 92vh; overflow-y: auto; }
.auth-close-btn { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border: 0; background: transparent; cursor: pointer; font-size: 18px; color: #666; border-radius: 50%; }
.auth-close-btn:hover { background: #f3f5f8; }
.auth-logo { display: flex; justify-content: center; margin-bottom: 4px; }
.auth-logo-img { width: 96px; height: 96px; border-radius: 22%; object-fit: cover; box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.auth-title { margin: 16px 0 4px; text-align: center; font-size: 22px; font-weight: 700; color: #222; }
.auth-subtitle { margin: 0 0 20px; text-align: center; font-size: 13px; color: #888; }
.auth-form { display: flex; flex-direction: column; gap: 10px; }
.auth-form input {
  height: 50px; padding: 0 16px; border: 1px solid #e3e6ea; border-radius: 12px; background: #fff;
  font-size: 16px; outline: none; transition: border-color .15s, box-shadow .15s;
}
.auth-form input:focus { border-color: #B2C7D9; box-shadow: 0 0 0 3px rgba(178,199,217,.25); }
.auth-btn {
  height: 52px; border: 0; border-radius: 12px; background: #B2C7D9; color: #fff; font-size: 16px;
  font-weight: 700; cursor: pointer; transition: transform .05s, filter .15s;
}
.auth-btn:hover { filter: brightness(1.05); }
.auth-btn:active { transform: translateY(1px); }
.auth-divider { display: flex; align-items: center; gap: 8px; color: #aaa; font-size: 12px; margin: 4px 0; }
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: #ececec; }
.kakao-login-btn {
  height: 52px; border: 0; border-radius: 12px; background: #FEE500; color: #191919;
  display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 16px; font-weight: 700; cursor: pointer;
}
.kakao-login-btn:hover { filter: brightness(.97); }
.auth-switch { text-align: center; font-size: 13px; color: #666; margin-top: 8px; }
.auth-switch a { color: #2b6cb0; text-decoration: none; font-weight: 600; }
.auth-error { padding: 10px 12px; background: #fee; border: 1px solid #fbb; color: #c33; border-radius: 8px; font-size: 13px; }
.auth-error.hidden { display: none; }

/* Header avatar */
.header-avatar {
  width: 32px; height: 32px; border-radius: 50%; background: #ddd; background-size: cover; background-position: center;
}

/* Install app button */
.install-app-btn { display: inline-flex; }
.install-app-btn:hover { background: rgba(255,255,255,.25); }

/* Connection / mute banners */
.conn-banner, .mute-banner {
  position: fixed; left: 50%; transform: translateX(-50%); top: 60px; z-index: 50;
  padding: 8px 14px; border-radius: 999px; font-size: 13px; color: #fff; box-shadow: 0 4px 14px rgba(0,0,0,.15);
  background: #d33;
}
.mute-banner { background: #555; }
.conn-banner.hidden, .mute-banner.hidden { display: none; }

/* Message rows */
.messages-container { padding-top: 64px; padding-bottom: 84px; overflow-y: auto; height: 100%; box-sizing: border-box; }
.msg { display: flex; gap: 8px; padding: 4px 12px; align-items: flex-start; }
.msg.out { flex-direction: row-reverse; }
.msg .avatar { width: 38px; height: 38px; background: #ccc; background-size: cover; background-position: center; clip-path: url(#squircleClip); flex: 0 0 38px; cursor: pointer; }
.msg .meta { display: flex; flex-direction: column; max-width: 72%; }
.msg .name { font-size: 12px; color: #333; margin: 0 6px 2px; }
.msg.out .name { display: none; }
.msg .bubble {
  background: #fff; padding: 10px 12px; border-radius: 14px; font-size: 14px; line-height: 1.45;
  word-break: break-word; white-space: pre-wrap; box-shadow: 0 1px 1px rgba(0,0,0,.05);
}
.msg.out .bubble { background: var(--message-out); }
.msg .bubble.has-media { padding: 4px; background: transparent; box-shadow: none; }
.msg .bubble img, .msg .bubble video { max-width: 240px; max-height: 320px; border-radius: 12px; display: block; }
.msg .time { font-size: 11px; color: #888; margin: 2px 6px; }
.msg .reactions { display: flex; gap: 4px; padding: 2px 6px; }
.msg .reactions .chip {
  background: #fff; border: 1px solid #e3e3e3; border-radius: 999px; padding: 2px 8px;
  font-size: 12px; cursor: pointer; user-select: none;
}
.msg .reactions .chip.active { background: #ffe7ea; border-color: #f3b3bb; }
.msg .actions { display: none; gap: 4px; align-items: center; padding: 0 6px; }
.msg:hover .actions { display: inline-flex; }
.msg .bubble { user-select: none; -webkit-user-select: none; }
/* Floating heart on double-click */
.fly-heart {
  position: fixed; font-size: 28px; pointer-events: none; z-index: 9999;
  animation: heartPop .9s cubic-bezier(.18,.78,.22,1) forwards;
  filter: drop-shadow(0 4px 8px rgba(255,80,80,.5));
}
@keyframes heartPop {
  0% { transform: translateY(0) scale(.4); opacity: 0; }
  20% { transform: translateY(-8px) scale(1.4); opacity: 1; }
  100% { transform: translateY(-80px) scale(1.1); opacity: 0; }
}
.msg .actions button { background: rgba(255,255,255,.7); border: 1px solid #e2e6ea; border-radius: 999px; cursor: pointer; padding: 3px 8px; font-size: 12px; }
.msg.system { justify-content: center; padding: 8px 12px; }
.msg.system .bubble { background: rgba(0,0,0,.08); color: #555; font-size: 12px; border-radius: 999px; }

.persona-tag {
  position: absolute; left: 56px; top: -22px; background: #6f42c1; color: #fff; font-size: 11px;
  padding: 2px 8px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px;
}
.persona-tag button { background: transparent; border: 0; color: #fff; cursor: pointer; }
.persona-pick-btn {
  width: 36px; height: 36px; border-radius: 50%; border: 0; background: #6f42c1; color: #fff; cursor: pointer;
  font-size: 18px;
}
.persona-pick-btn.hidden { display: none; }

.typing-indicator {
  position: absolute; left: 56px; bottom: 70px; display: inline-flex; gap: 4px;
  background: #fff; padding: 6px 10px; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.typing-indicator.hidden { display: none; }
.typing-dot { width: 6px; height: 6px; background: #aaa; border-radius: 50%; animation: typingBlink 1.2s infinite; }
.typing-dot:nth-child(2) { animation-delay: .2s; }
.typing-dot:nth-child(3) { animation-delay: .4s; }
@keyframes typingBlink { 0%,80%,100% { opacity: .3; } 40% { opacity: 1; } }

/* Side menu */
.side-menu {
  position: fixed; left: 0; top: 0; bottom: 0; width: 320px; background: #fff;
  transform: translateX(-105%); transition: transform .25s ease; z-index: 300; display: flex; flex-direction: column;
  box-shadow: 4px 0 20px rgba(0,0,0,.08);
}
.side-menu.open { transform: translateX(0); }
.menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); opacity: 0; pointer-events: none; transition: opacity .2s; z-index: 250; }
.menu-overlay.open { opacity: 1; pointer-events: auto; }
.side-menu-header { padding: 24px 20px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid #f0f0f0; }
.menu-avatar { width: 56px; height: 56px; background: #ddd; background-size: cover; clip-path: url(#squircleClip); }
.menu-user-info { flex: 1; min-width: 0; }
.menu-display-name { font-size: 16px; font-weight: 700; color: #222; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.menu-username { font-size: 13px; color: #888; }
.menu-role-badge { display: inline-block; margin-top: 4px; padding: 2px 8px; border-radius: 999px; font-size: 11px; font-weight: 700; background: #2b6cb0; color: #fff; }
.menu-role-badge.hidden { display: none; }
.menu-role-badge.qq2 { background: #38a169; }
.menu-role-badge.qq3 { background: #d69e2e; }
.side-menu-content { flex: 1; overflow-y: auto; padding: 12px 8px; }
.menu-section { margin-bottom: 8px; }
.menu-section-header { font-size: 11px; color: #888; padding: 6px 12px; text-transform: uppercase; letter-spacing: .5px; }
.menu-item, .room-item {
  display: flex; align-items: center; gap: 12px; width: 100%; padding: 10px 12px;
  background: transparent; border: 0; cursor: pointer; border-radius: 10px; font-size: 14px; color: #222; text-align: left;
}
.menu-item:hover, .room-item:hover { background: #f3f5f8; }
.menu-item.danger { color: #c33; }
.menu-divider { height: 1px; background: #f0f0f0; margin: 8px 12px; }
.room-item.active { background: #eef2f7; font-weight: 600; }
.room-icon { width: 32px; height: 32px; border-radius: 8px; background: #FEE500; display: inline-flex; align-items: center; justify-content: center; font-size: 16px; }
.room-item .room-icon-img { width: 32px; height: 32px; clip-path: url(#squircleClip); background-size: cover; }
.room-unread { margin-left: auto; background: #d33; color: #fff; font-size: 11px; padding: 1px 6px; border-radius: 999px; min-width: 18px; text-align: center; }
.room-unread.hidden { display: none; }
.dm-list { display: flex; flex-direction: column; }
.dm-list .room-item .last-body { font-size: 12px; color: #888; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 180px; }

/* Profile modal */
.modal { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 400; display: flex; align-items: center; justify-content: center; padding: 16px; }
.modal.hidden { display: none; }
.modal-content { background: #fff; border-radius: 14px; max-width: 480px; width: 100%; max-height: 90vh; overflow: auto; position: relative; padding: 24px; }
.close-btn { position: absolute; top: 10px; right: 10px; background: transparent; border: 0; font-size: 24px; cursor: pointer; color: #555; }
.profile-modal-rich { padding: 0; max-width: 540px; max-height: 92vh; overflow: auto; }
.profile-modal-rich .profile-top-section {
  background: linear-gradient(180deg, #B2C7D9 0%, #cdd9e4 100%);
  padding: 28px 16px 20px; text-align: center; position: relative;
}
.profile-avatar-large { width: 120px; height: 120px; background: #ddd; background-size: cover; clip-path: url(#squircleClip); margin: 0 auto 12px; box-shadow: 0 6px 20px rgba(0,0,0,.12); }
.profile-image-edit {
  position: absolute; left: 50%; transform: translateX(-50%); top: 130px;
  font-size: 11px; padding: 3px 10px; border-radius: 999px; border: 0; background: rgba(0,0,0,.55); color: #fff; cursor: pointer;
}
.profile-image-edit.hidden { display: none; }
.profile-display-name { font-size: 22px; font-weight: 800; margin: 8px 0 12px; color: #222; }
.profile-name-edit-wrap { display: flex; gap: 6px; max-width: 320px; margin: 0 auto 12px; align-items: center; }
.profile-name-edit-wrap.hidden { display: none; }
.profile-name-edit-wrap input { flex: 1; height: 36px; padding: 0 10px; border: 1px solid #cfd6df; border-radius: 8px; background: #fff; }
.profile-actions { display: flex; flex-direction: column; gap: 8px; padding: 0 16px; }
.profile-message-btn {
  height: 48px; border-radius: 12px; border: 0; background: #FEE500; color: #191919; font-size: 15px;
  font-weight: 700; cursor: pointer;
}
.profile-message-btn:hover { filter: brightness(.97); }
.admin-quick-actions { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; padding-top: 12px; border-top: 1px solid rgba(0,0,0,.08); }
.admin-quick-actions.hidden { display: none; }

.profile-section { padding: 16px 16px 8px; border-top: 1px solid #f0f0f0; }
.profile-section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.profile-section-header h4 { margin: 0; font-size: 14px; color: #222; }
.profile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.profile-grid .cell {
  aspect-ratio: 1; background: #f3f5f8; background-size: cover; background-position: center;
  cursor: pointer; position: relative; border-radius: 6px; overflow: hidden;
}
.profile-grid .cell.text-only { padding: 8px; font-size: 12px; color: #444; display: flex; align-items: center; justify-content: center; text-align: center; line-height: 1.4; background: #fff8e1; }
.profile-grid .cell.video::after { content: "▶"; position: absolute; bottom: 4px; right: 6px; color: #fff; font-size: 14px; text-shadow: 0 1px 3px rgba(0,0,0,.6); }
.profile-grid .cell .del { position: absolute; top: 2px; right: 2px; background: rgba(0,0,0,.6); color: #fff; border: 0; border-radius: 4px; font-size: 10px; padding: 2px 5px; cursor: pointer; opacity: 0; transition: opacity .15s; }
.profile-grid .cell:hover .del { opacity: 1; }
.profile-empty { text-align: center; color: #999; font-size: 13px; padding: 12px 0; }
.profile-empty.hidden { display: none; }
.profile-grid:empty + .profile-empty { display: block; }
.compose-media-preview { width: 100%; max-height: 240px; background: #f3f5f8; border-radius: 10px; margin-bottom: 8px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.compose-media-preview.hidden { display: none; }
.compose-media-preview img, .compose-media-preview video { max-width: 100%; max-height: 240px; }

/* Install modal */
.install-modal { text-align: left; padding: 28px; }
.install-title { margin: 0 0 8px; font-size: 22px; font-weight: 800; }
.install-desc { margin: 0 0 16px; color: #555; font-size: 14px; line-height: 1.6; }
.install-steps { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.install-step {
  display: flex; gap: 10px; align-items: flex-start; padding: 10px 12px;
  background: #f6f7f9; border-radius: 10px; font-size: 14px;
}
.install-step .num {
  width: 24px; height: 24px; flex: 0 0 24px; border-radius: 50%; background: #FEE500; color: #191919;
  font-weight: 700; display: inline-flex; align-items: center; justify-content: center; font-size: 13px;
}

/* Buttons */
.btn-primary { height: 40px; padding: 0 16px; border: 0; border-radius: 8px; background: #B2C7D9; color: #fff; font-weight: 700; cursor: pointer; }
.btn-primary:hover { filter: brightness(1.05); }
.btn-secondary { height: 40px; padding: 0 16px; border: 1px solid #d6dade; background: #fff; border-radius: 8px; cursor: pointer; }
.btn-secondary:hover { background: #f3f5f8; }
.btn-danger { height: 40px; padding: 0 16px; border: 0; border-radius: 8px; background: #d33; color: #fff; font-weight: 700; cursor: pointer; }
.btn-danger:hover { filter: brightness(1.05); }

/* Admin panel */
.admin-panel { position: fixed; inset: 0; background: #f6f7f9; z-index: 350; display: flex; flex-direction: column; }
.admin-panel.hidden { display: none; }
.admin-header { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; background: #fff; border-bottom: 1px solid #eee; gap: 8px; }
.admin-header h2 { margin: 0; font-size: 16px; }
.admin-warning { padding: 12px 16px; background: #fff8e1; color: #92591a; font-size: 13px; border-bottom: 1px solid #f1d889; }
.admin-warning.hidden { display: none; }
.admin-tabs { display: flex; background: #fff; border-bottom: 1px solid #eee; overflow-x: auto; }
.admin-tab { flex: 1; min-width: 100px; height: 44px; border: 0; background: transparent; cursor: pointer; font-size: 14px; color: #555; border-bottom: 2px solid transparent; }
.admin-tab.active { color: #2b6cb0; border-bottom-color: #2b6cb0; font-weight: 700; }
.admin-body { flex: 1; overflow-y: auto; padding: 16px; }
.admin-pane { display: none; }
.admin-pane.active { display: block; }
.pane-controls { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.pane-controls input, .pane-controls select { height: 40px; padding: 0 12px; border: 1px solid #d6dade; border-radius: 8px; background: #fff; }
.muted { color: #888; font-size: 13px; align-self: center; }

.members-list, .personas-list, .blocks-list { display: grid; gap: 8px; }
.member-card, .persona-card, .block-card {
  background: #fff; border: 1px solid #ececec; border-radius: 12px; padding: 12px;
  display: flex; align-items: center; gap: 12px;
}
.member-card .avatar, .persona-card .avatar { width: 44px; height: 44px; background: #ddd; background-size: cover; clip-path: url(#squircleClip); }
.member-card .info, .persona-card .info { flex: 1; min-width: 0; }
.member-card .name, .persona-card .name { font-weight: 600; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.member-card .sub, .persona-card .sub { color: #888; font-size: 12px; }
.member-card .actions, .persona-card .actions { display: flex; gap: 6px; flex-wrap: wrap; }
.tag { display: inline-block; padding: 2px 8px; background: #eef2f7; border-radius: 999px; font-size: 11px; color: #2b6cb0; }
.tag.danger { background: #fed7d7; color: #c53030; }
.tag.muted { background: #f0f0f0; color: #666; }

.settings-form { background: #fff; padding: 16px; border-radius: 12px; display: grid; gap: 12px; max-width: 600px; }
.settings-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: #555; }
.settings-form input[type=text], .settings-form input { height: 40px; padding: 0 12px; border: 1px solid #d6dade; border-radius: 8px; background: #fff; font-size: 14px; }
.settings-form .checkbox-row { flex-direction: row; align-items: center; gap: 8px; }
.settings-divider { height: 1px; background: #eee; margin: 8px 0; }

/* Persona picker */
.persona-picker { max-width: 520px; }
.persona-picker-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; max-height: 60vh; overflow-y: auto; }
.persona-pick-card { display: flex; align-items: center; gap: 8px; padding: 8px; border: 1px solid #ececec; border-radius: 10px; cursor: pointer; background: #fff; }
.persona-pick-card:hover { background: #f3f5f8; }
.persona-pick-card .avatar { width: 36px; height: 36px; background: #ddd; background-size: cover; clip-path: url(#squircleClip); }
.persona-pick-card .name { font-size: 13px; font-weight: 600; }

/* Toast */
.toast-container { position: fixed; left: 50%; bottom: 90px; transform: translateX(-50%); z-index: 600; display: flex; flex-direction: column; gap: 6px; align-items: center; pointer-events: none; }
.toast { background: rgba(0,0,0,.78); color: #fff; padding: 8px 14px; border-radius: 999px; font-size: 13px; box-shadow: 0 4px 14px rgba(0,0,0,.18); }
.toast.success { background: rgba(46,125,50,.92); }
.toast.error { background: rgba(198,40,40,.92); }

/* Send button always visible (we allow text + attachment send) */
.send-btn { width: 44px; height: 44px; border-radius: 50%; background: #FEE500; border: 0; color: #191919; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
.send-btn:disabled { background: #f0f0f0; color: #999; cursor: not-allowed; }

/* Guest input — looks normal, behaves with login prompt on click */
.message-input-wrapper.readonly { position: relative; }
.login-kakao-btn { padding: 4px; }

/* Floating login-required hint */
.guest-hint {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: 88px;
  background: rgba(0,0,0,.82); color: #fff; padding: 10px 16px; border-radius: 999px;
  font-size: 13px; box-shadow: 0 6px 20px rgba(0,0,0,.25); z-index: 60;
  display: inline-flex; align-items: center; gap: 6px; animation: hintIn .2s ease;
  white-space: nowrap;
}
.guest-hint::after {
  content: ""; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: rgba(0,0,0,.82);
}
.guest-hint .arrow { color: #FEE500; font-weight: 800; }
@keyframes hintIn { from { opacity: 0; transform: translateX(-50%) translateY(8px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
.guest-hint.hidden { display: none; }

/* Scroll-down button */
.scroll-down-btn {
  position: absolute; right: 16px; bottom: 90px; width: 44px; height: 44px;
  background: #fff; border: 1px solid #e3e6ea; border-radius: 50%; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; color: #555;
  box-shadow: 0 4px 14px rgba(0,0,0,.12); z-index: 30;
}
.scroll-down-btn:hover { background: #f6f7f9; }
.scroll-down-count { position: absolute; top: -6px; right: -6px; min-width: 18px; height: 18px; padding: 0 4px; background: #d33; color: #fff; border-radius: 999px; font-size: 11px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; }
.scroll-down-count.hidden { display: none; }

/* Consecutive messages grouping */
.msg.grouped .avatar { visibility: hidden; }
.msg.grouped .name { display: none; }
.msg.grouped { padding-top: 0; padding-bottom: 0; margin-top: -4px; }
.msg .name-row { display: flex; align-items: center; gap: 6px; }
.msg .name-row .persona-tag-inline { font-size: 10px; background: #ede7ff; color: #6f42c1; border-radius: 999px; padding: 1px 6px; }
.msg.out .bubble { border-top-right-radius: 4px; }
.msg.out.grouped .bubble { border-radius: 14px; border-top-right-radius: 4px; }
.msg .bubble { border-top-left-radius: 4px; }
.msg.out .bubble { border-top-left-radius: 14px; }

/* Date separator */
.msg.system .bubble { padding: 6px 14px; }

/* Member card additions */
.member-card .online { width: 8px; height: 8px; border-radius: 50%; background: #38a169; display: inline-block; vertical-align: middle; margin-right: 6px; }
.member-card .offline { width: 8px; height: 8px; border-radius: 50%; background: #c4c4c4; display: inline-block; vertical-align: middle; margin-right: 6px; }

/* Large/elderly mode */
body.large-mode .msg .bubble { font-size: 17px; }
body.large-mode .menu-display-name { font-size: 18px; }
body.large-mode .auth-form input { font-size: 18px; height: 56px; }
body.large-mode .auth-btn, body.large-mode .kakao-login-btn { font-size: 18px; height: 58px; }

/* Misc */
.hidden { display: none !important; }

/* Responsive: phone-friendly */
@media (max-width: 480px) {
  .auth-container { padding: 32px 18px 64px; }
  .side-menu { width: 86vw; }
}

