@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  /* Jolibee Theme Colors */
  --canvas: #fff9eb;
  --surface: #ffffff;
  --surface-muted: #fff0d4;
  --line: #f7d4d4;
  --text: #2d1115;
  --muted: #a35d64;
  --sidebar: #e31837;
  
  --jolibee-red: #e31837;
  --jolibee-yellow: #fbc500;
  --jolibee-dark-red: #b31029;
  
  --blue: #2c75c9;
  --orange: #fbc500;
  --green: #4caf50;
  --purple: #806ba2;
  --red: #e31837;
  
  --shadow: 0 8px 24px rgba(227, 24, 55, 0.15);
  font-family: 'Nunito', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; height: 100vh; overflow: hidden; background: var(--canvas); color: var(--text); }
body { font-size: 15px; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); }
button:disabled { cursor: not-allowed; opacity: .45; filter: grayscale(1); }
[hidden] { display: none !important; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--canvas); }
::-webkit-scrollbar-thumb { background: #fbc500; border-radius: 5px; border: 2px solid var(--canvas); }
::-webkit-scrollbar-thumb:hover { background: #e31837; }

.app-shell { display: flex; height: 100vh; }
.sidebar { width: 280px; flex: 0 0 280px; padding: 24px 16px; background: var(--sidebar); border-right: none; display: flex; flex-direction: column; gap: 32px; box-shadow: 4px 0 24px rgba(0,0,0,0.1); z-index: 10; color: #fff; }

.brand-card { display: flex; align-items: center; gap: 14px; padding: 18px 16px; border: 3px solid var(--jolibee-yellow); border-radius: 20px; background: var(--jolibee-dark-red); box-shadow: 0 4px 0 var(--jolibee-yellow); }
.brand-mark { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: var(--jolibee-yellow); color: var(--jolibee-red); font-size: 26px; font-weight: 900; }
.brand-card strong { font-size: 18px; font-weight: 900; color: #fff; }
.brand-card span { margin-top: 4px; font-size: 12px; color: #ffeb99; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.sidebar-section { display: grid; gap: 8px; }
.sidebar-label { margin: 0 12px 8px; color: #ffb3b3; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; }
.nav-item { display: flex; align-items: center; gap: 12px; width: 100%; min-height: 48px; padding: 0 16px; border: 2px solid transparent; border-radius: 16px; background: transparent; color: #fff; text-align: left; font-weight: 700; font-size: 15px; }
.nav-item:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.nav-item.active { background: var(--jolibee-yellow); color: var(--jolibee-red); box-shadow: 0 4px 0 rgba(0,0,0,0.1); }
.nav-icon { width: 24px; font-size: 20px; text-align: center; }

.sidebar-footer { margin-top: auto; padding: 16px; border: 2px solid rgba(255,255,255,0.2); border-radius: 16px; background: rgba(0,0,0,0.1); }
.connection-mini { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; color: #fff; }
.api-url-label { display: block; margin-top: 8px; font: 11px monospace; color: #ffcccc; }

.main-content { min-width: 0; flex: 1; padding: 24px 32px; overflow: hidden; display: flex; flex-direction: column; gap: 16px; } .view { flex: 1; min-height: 0; display: flex; flex-direction: column; gap: 16px; } .nav-icon { transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); } .nav-item:hover .nav-icon { transform: scale(1.2) rotate(-10deg); }
.topbar { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.eyebrow { margin: 0 0 8px; color: var(--jolibee-red); font-size: 12px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; }
h1 { margin: 0; font-size: 36px; font-weight: 900; color: var(--text); letter-spacing: -0.5px; }
h2 { margin: 0; font-size: 18px; font-weight: 800; }

.topbar-actions { display: flex; align-items: center; gap: 12px; }
.worker-badge, .status-pill { display: inline-flex; align-items: center; gap: 8px; border: 2px solid var(--line); border-radius: 12px; font-size: 13px; font-weight: 800; padding: 10px 16px; background: var(--surface); color: var(--text); }
.worker-badge.running { border-color: #ffd84d; background: #fffbe6; color: #b38600; }
.worker-badge.idle { border-color: #ffcccc; background: #fff0f0; color: var(--jolibee-red); }
.icon-button { width: 46px; height: 46px; border: 2px solid var(--line); border-radius: 14px; background: var(--surface); color: var(--jolibee-red); font-size: 22px; display: grid; place-items: center; box-shadow: 0 4px 0 var(--line); }
.icon-button:hover { background: var(--jolibee-yellow); border-color: var(--jolibee-yellow); color: var(--jolibee-red); transform: translateY(-2px); box-shadow: 0 6px 0 rgba(251, 197, 0, 0.4); }
.icon-button:active { transform: translateY(2px); box-shadow: 0 2px 0 rgba(251, 197, 0, 0.4); }

.status-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: #ccc; }
.status-dot.online, .status-pill.ready .status-dot { background: var(--green); }
.status-dot.offline, .status-pill.error .status-dot { background: var(--red); }

.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; flex-shrink: 0; }
    .stat-card { position: relative; padding: 24px; background: #ffffff; border: 1px solid #ffe6e6; border-top: 4px solid var(--jolibee-red); border-radius: 16px; box-shadow: 0 8px 24px rgba(227, 24, 55, 0.08); transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; overflow: hidden; }
  .stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(227, 24, 55, 0.12); }
  .stat-card span { display: block; color: var(--text); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; }
  .stat-card strong { display: block; margin: 16px 0 8px; color: var(--jolibee-red); font-size: 42px; font-weight: 900; line-height: 1; }
  .stat-card small { color: #888; font-size: 13px; font-weight: 600; }
  .stat-card::before { content: ""; position: absolute; top: -4px; left: 0; width: 40px; height: 4px; background: var(--jolibee-yellow); }

.workspace-card { flex: 1; min-height: 0; border: 2px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: 0 8px 0 var(--line); display: flex; flex-direction: column; overflow: hidden; }
.panel-card { border: 2px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: 0 8px 0 var(--line); display: flex; flex-direction: column; overflow: hidden; }
.toolbar { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-bottom: 2px solid var(--line); background: #fff5f5; }
.toolbar-spacer { flex: 1; }
.search-box { display: flex; align-items: center; width: 320px; height: 46px; padding: 0 16px; border: 2px solid var(--line); border-radius: 14px; background: #fff; color: var(--muted); transition: all 0.2s; }
.search-box:focus-within { border-color: var(--jolibee-red); box-shadow: 0 4px 12px rgba(227,24,55,0.1); }
.search-box span { font-size: 20px; margin-right: 8px; color: var(--jolibee-red); }
.search-box input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--text); font-size: 15px; font-weight: 600; }
select, input, textarea { border: 2px solid var(--line); border-radius: 12px; background: #fff; color: var(--text); outline: none; transition: border-color 0.2s; font-weight: 600; }
select:focus, input:focus, textarea:focus { border-color: var(--jolibee-red); }
.toolbar select { height: 46px; padding: 0 16px; color: var(--text); font-weight: 700; font-size: 14px; }

.button { min-height: 46px; padding: 0 24px; border: 2px solid var(--line); border-radius: 14px; background: #fff; color: var(--text); font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 4px 0 var(--line); }
.button:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--line); }
.button:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--line); }
.button.primary { border-color: var(--jolibee-dark-red); background: var(--jolibee-red); color: #fff; box-shadow: 0 4px 0 var(--jolibee-dark-red); }
.button.primary:hover { background: #ff2c4d; box-shadow: 0 6px 0 var(--jolibee-dark-red); }
.button.danger { border-color: #cc0000; background: #ff4d4d; color: #fff; box-shadow: 0 4px 0 #cc0000; }
.button.danger:hover { background: #ff6666; }
.button.ghost { border-color: transparent; box-shadow: none; color: var(--jolibee-red); }
.button.ghost:hover { background: #fff0f0; transform: none; box-shadow: none; }
.button.small { min-height: 36px; padding: 0 16px; font-size: 12px; border-radius: 10px; box-shadow: 0 3px 0 var(--line); }

.table-wrap { overflow: auto; flex: 1; min-height: 0; }
table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 1080px; }
th { padding: 16px 20px; background: #fff5f5; color: var(--jolibee-red); font-size: 12px; font-weight: 900; text-align: left; text-transform: uppercase; letter-spacing: 1px; border-bottom: 2px solid var(--line); white-space: nowrap; }
td { padding: 16px 20px; border-bottom: 1px solid var(--line); color: var(--text); font-size: 14px; white-space: nowrap; font-weight: 700; }
tbody tr { transition: background 0.15s; }
tbody tr:hover, tbody tr.selected { background: #fffaf5; }
tbody tr.selected { background: #fff5f5; }
tbody tr.selected td:first-child { box-shadow: inset 4px 0 var(--jolibee-red); }
input[type="checkbox"] { appearance: none; width: 22px; height: 22px; border: 2px solid var(--jolibee-red); border-radius: 6px; background: #fff; cursor: pointer; position: relative; transition: all 0.2s; box-shadow: 0 2px 0 var(--jolibee-red); }
input[type="checkbox"]:checked { background: var(--jolibee-yellow); border-color: var(--jolibee-dark-red); box-shadow: 0 2px 0 var(--jolibee-dark-red); }
input[type="checkbox"]:checked::after { content: "✔"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: var(--jolibee-red); font-size: 14px; font-weight: 900; }

.mono { font-family: monospace; font-size: 13px; }
.email-cell { display: flex; align-items: center; gap: 12px; }
.email-cell strong { color: var(--text); font-size: 15px; font-weight: 800; display: block; }
.email-cell small { color: var(--muted); font-size: 12px; margin-top: 4px; display: block; font-weight: 700; }
.avatar { display: grid; flex: 0 0 36px; place-items: center; width: 36px; height: 36px; border-radius: 12px; background: var(--jolibee-yellow); color: var(--jolibee-red); font-weight: 900; font-size: 16px; border: 2px solid var(--jolibee-dark-red); }

.soft-tag, .auth-state, .proxy-text, .status-pill { padding: 6px 12px; border-radius: 8px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; display: inline-flex; align-items: center; justify-content: center; border: 2px solid transparent; }
.soft-tag { background: #f2f2f2; border-color: #e6e6e6; color: #666; }
.status-pill.ready { background: #e8f5e9; color: #2e7d32; border-color: #c8e6c9; }
.status-pill.active { background: #e3f2fd; color: #1565c0; border-color: #bbdefb; }
.status-pill.disabled { background: #f5f5f5; color: #757575; border-color: #e0e0e0; }
.status-pill.error { background: #ffebee; color: #c62828; border-color: #ffcdd2; }

.detail-button { padding: 6px 14px; border: 2px solid var(--line); border-radius: 8px; background: #fff; color: var(--jolibee-red); font-size: 12px; font-weight: 800; transition: all 0.2s; box-shadow: 0 2px 0 var(--line); }
.detail-button:hover { background: var(--jolibee-yellow); border-color: var(--jolibee-dark-red); color: var(--jolibee-red); box-shadow: 0 2px 0 var(--jolibee-dark-red); transform: translateY(-1px); }

.table-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 20px; border-top: 2px solid var(--line); background: #fff5f5; }
.bulk-actions, .pagination { display: flex; align-items: center; gap: 16px; }
.bulk-actions { color: var(--jolibee-red); font-size: 13px; font-weight: 800; }
.text-button { padding: 8px 16px; border: 2px solid transparent; background: transparent; color: var(--jolibee-red); font-size: 13px; font-weight: 800; border-radius: 10px; }
.text-button:hover { background: #ffe6e6; }
.page-button { width: 36px; height: 36px; border: 2px solid var(--line); border-radius: 10px; background: #fff; color: var(--jolibee-red); font-size: 18px; display: grid; place-items: center; font-weight: 900; box-shadow: 0 3px 0 var(--line); }
.page-button:hover { background: var(--jolibee-yellow); border-color: var(--jolibee-dark-red); box-shadow: 0 3px 0 var(--jolibee-dark-red); transform: translateY(-1px); }
.pagination { color: var(--text); font-size: 13px; font-weight: 800; }

.bottom-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 24px; margin-top: 0; flex-shrink: 0; }
.panel-card { padding: 24px; }
.panel-heading { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 24px; }
.task-summary { display: flex; align-items: center; gap: 18px; padding: 18px 24px; border: 1px solid #f2dfcc; border-left: 5px solid #22c55e; border-radius: 16px; background: #ffffff; box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.task-summary div { display: flex; flex-direction: column; gap: 4px; }
.task-summary strong { font-size: 15px; font-weight: 800; color: var(--text); }
.task-summary small { color: #64748b; font-size: 13px; font-weight: 600; margin: 0; }
.task-icon { width: 44px; height: 44px; border-radius: 12px; background: #f0fdf4; color: #16a34a; font-size: 20px; font-weight: 900; display: grid; place-items: center; border: 1.5px solid #bbf7d0; box-shadow: none; }
.task-icon.running { background: #fffbeb; color: #d97706; border-color: #fde68a; animation: bounce 1s infinite; }
.task-icon.error { background: #fef2f2; color: var(--jolibee-red); border-color: #fecaca; }

.log-panel { display: flex; flex-direction: column; flex: 1; min-height: 0; }
.log-panel pre { flex: 1; height: 200px; margin: 0; padding: 20px; overflow: auto; border-radius: 16px; background: #2d1115; border: 2px solid var(--jolibee-dark-red); color: #ffeb99; font-family: monospace; font-size: 13px; line-height: 1.6; font-weight: 600; box-shadow: inset 0 4px 12px rgba(0,0,0,0.4); }

@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* Modals */
.modal-dialog { width: min(800px, calc(100% - 32px)); padding: 0; border: 4px solid var(--jolibee-red); border-radius: 24px; background: #fff; color: var(--text); box-shadow: 0 20px 60px rgba(227, 24, 55, 0.3); }
.modal-dialog::backdrop { background: rgba(45, 17, 21, 0.6); backdrop-filter: blur(4px); }
.modal-dialog form, .modal-dialog > div { padding: 32px; }
.modal-header { display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 24px; border-bottom: 2px dashed var(--line); margin-bottom: 24px; }
.close-button { width: 40px; height: 40px; border: 2px solid var(--line); border-radius: 12px; background: #fff; color: var(--jolibee-red); font-size: 28px; display: grid; place-items: center; transition: all 0.2s; box-shadow: 0 4px 0 var(--line); font-weight: 900; }
.close-button:hover { background: var(--jolibee-yellow); border-color: var(--jolibee-dark-red); box-shadow: 0 4px 0 var(--jolibee-dark-red); transform: translateY(-2px); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; } .form-grid label.full { grid-column: 1 / -1; } .modal-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 24px; } .bulk-dialog textarea, .modal-dialog textarea, textarea { width: 100%; min-height: 200px; resize: vertical; } input[type="checkbox"] { width: 22px; height: 22px; }
.form-grid label { display: grid; gap: 8px; color: var(--jolibee-red); font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; }
.form-grid label:has(input[type="checkbox"]) { display: flex; align-items: center; cursor: pointer; flex-direction: row; }
.form-grid input:not([type="checkbox"]), .form-grid select { height: 48px; font-size: 15px; border-radius: 12px; background: #fff; border: 2px solid var(--line); padding: 0 16px; font-weight: 700; }
.form-grid input[type="checkbox"] { width: 24px !important; height: 24px !important; margin-right: 8px; }
.form-grid input:focus, .form-grid select:focus { border-color: var(--jolibee-red); box-shadow: 0 0 0 4px rgba(227,24,55,0.1); }
.form-grid input:focus, .form-grid select:focus { border-color: var(--jolibee-red); box-shadow: 0 0 0 4px rgba(227,24,55,0.1); }

.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 24px; }
.detail-grid > div { padding: 16px 20px; border: 2px dashed var(--line); border-radius: 16px; background: #fff9e6; }
.detail-grid span { color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.detail-grid strong { margin-top: 8px; font-size: 16px; font-weight: 900; color: var(--jolibee-red); display: block; }

.point-check-button { background: var(--jolibee-yellow); border: 2px solid var(--jolibee-dark-red); color: var(--jolibee-red); border-radius: 8px; padding: 6px 14px; font-weight: 900; text-transform: uppercase; font-size: 11px; transition: all 0.2s; box-shadow: 0 2px 0 var(--jolibee-dark-red); }
.point-check-button:hover { background: var(--jolibee-red); color: var(--jolibee-yellow); transform: translateY(-1px); box-shadow: 0 3px 0 var(--jolibee-dark-red); }
.point-check-value { font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 900; color: var(--jolibee-red); background: #fff0f0; padding: 4px 8px; border-radius: 8px; border: 2px dashed #ffcccc; }
.proxy-form { padding: 24px; }


/* Auth Screen Overlay */
.auth-screen {
  position: fixed;
  inset: 0;
  background: var(--canvas);
  background-image: radial-gradient(#fbc500 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.auth-screen[hidden] {
  display: none !important;
}

.auth-card {
  width: 100%;
  max-width: 400px;
  background: #ffffff;
  border: 3px solid var(--jolibee-red);
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(227, 24, 55, 0.16), 0 6px 0 var(--jolibee-yellow);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: authPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes authPop {
  from { opacity: 0; transform: scale(0.92) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.auth-brand {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.auth-logo {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 3px solid var(--jolibee-yellow);
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(227, 24, 55, 0.2);
}

.auth-brand h1 {
  font-size: 24px;
  font-weight: 900;
  color: var(--jolibee-red);
  margin: 4px 0 0;
}

.auth-brand p {
  font-size: 13px;
  font-weight: 700;
  color: #777;
  margin: 0;
}

.auth-tabs {
  display: flex;
  background: #fff0d4;
  border-radius: 14px;
  padding: 4px;
  gap: 4px;
}

.auth-tab {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  color: #8a5818;
  cursor: pointer;
  transition: all 0.2s;
}

.auth-tab.active {
  background: #ffffff;
  color: var(--jolibee-red);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.auth-notice {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.auth-notice.error {
  background: #ffebeb;
  color: var(--jolibee-red);
  border: 1px solid #ffcccc;
}

.auth-notice.success {
  background: #edfcf2;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
}

.auth-form input {
  height: 44px;
  padding: 0 16px;
  font-size: 14px;
  border: 2px solid #ffd1d1;
  border-radius: 12px;
  outline: none;
  transition: all 0.2s;
}

.auth-form input:focus {
  border-color: var(--jolibee-red);
  box-shadow: 0 0 0 3px rgba(227, 24, 55, 0.12);
}

.auth-submit {
  height: 46px;
  margin-top: 6px;
  font-size: 15px;
  font-weight: 900;
  border-radius: 14px;
}

/* Sidebar User Profile Panel */
.sidebar-footer {
  margin-top: auto;
  padding-top: 16px;
}

.user-profile-panel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.18);
  border: 1.5px solid rgba(251, 197, 0, 0.4);
  border-radius: 16px;
}

.user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--jolibee-yellow);
  color: var(--jolibee-red);
  font-size: 16px;
  font-weight: 900;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.user-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.user-info strong {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-role-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 6px;
  align-self: flex-start;
}

.user-role-badge.role-admin {
  background: var(--jolibee-yellow);
  color: var(--jolibee-dark-red);
}

.user-role-badge.role-member {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.logout-button {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #ffcccc;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.logout-button:hover {
  background: #ffffff;
  color: var(--jolibee-red);
  transform: scale(1.06);
}



.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.password-wrapper input {
  width: 100%;
  padding-right: 46px !important;
}

.toggle-password {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: #a35d64;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s;
}

.toggle-password:hover {
  color: var(--jolibee-red);
  background: #fff0d4;
}

.toggle-password svg {
  width: 20px;
  height: 20px;
}

