body { font-family: 'Inter', sans-serif; background-color: #09090b; color: #e4e4e7; margin: 0; display: flex; justify-content: center; min-height: 100vh; }

#main-wrapper { width: 100%; max-width: 430px; background: #09090b; min-height: 100vh; position: relative; padding-bottom: 80px; }

:root { --primary: #fbbf24; --bg-card: #18181b; --bg-input: #27272a; }

.text-gold { color: var(--primary); }
.bg-card-custom { background: var(--bg-card); border: 1px solid #27272a; border-radius: 12px; }

.input-box { width: 100%; padding: 12px; background: var(--bg-input); border: 1px solid #3f3f46; border-radius: 8px; color: #fff; outline: none; font-size: 14px; transition: 0.2s; }
.input-box:focus { border-color: var(--primary); }

.btn-action { background: var(--primary); color: #000; width: 100%; padding: 12px; border-radius: 8px; font-weight: 700; font-size: 13px; text-transform: uppercase; cursor: pointer; border: none; transition: 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-action:active { transform: scale(0.98); }

.hide { display: none !important; }

/* Login */
.login-screen { position: absolute; inset: 0; background: #09090b; z-index: 50; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; }

/* Card Agendamento */
.time-row { display: flex; gap: 12px; margin-bottom: 10px; align-items: flex-start; }
.time-col { width: 45px; text-align: right; font-size: 13px; color: #71717a; font-weight: 600; padding-top: 8px; }
.card-app { flex: 1; background: #18181b; border-radius: 10px; padding: 12px; border-left: 4px solid #27272a; position: relative; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); display: flex; justify-content: space-between; align-items: center; }
.card-info { flex: 1; overflow: hidden; padding-right: 5px; }
.card-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; flex-shrink: 0; }

/* Status */
.st-verde { border-left-color: #10b981; } 
.st-amarelo { border-left-color: #f59e0b; } 
.st-vermelho { border-left-color: #ef4444; background: rgba(239, 68, 68, 0.05); } 
.st-cinza { border-left-color: #52525b; opacity: 0.5; }
.st-bloqueado { border-left-color: #3f3f46; background: repeating-linear-gradient(45deg, #18181b, #18181b 10px, #27272a 10px, #27272a 20px); opacity: 0.8; }

/* Menu */
.bottom-nav { position: fixed; bottom: 0; width: 100%; max-width: 430px; background: rgba(9, 9, 11, 0.95); backdrop-filter: blur(10px); border-top: 1px solid #27272a; display: flex; justify-content: space-around; padding: 12px 0 20px 0; z-index: 40; }
.nav-btn { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #71717a; font-size: 10px; cursor: pointer; transition: 0.2s; }
.nav-btn.active { color: var(--primary); }

/* Badges e Listas */
.list-item { display: flex; justify-content: space-between; align-items: center; padding: 10px; border-bottom: 1px solid #27272a; font-size: 12px; }
.badge-vip { background: linear-gradient(90deg, #8b5cf6, #6d28d9); color: white; padding: 2px 6px; border-radius: 4px; font-size: 9px; font-weight: bold; margin-left: 5px; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid #a78bfa; }
.badge-faltou { background: #ef4444; color: white; padding: 2px 6px; border-radius: 4px; font-size: 10px; font-weight: bold; }
.radar-item { display: flex; justify-content: space-between; align-items: center; background: #18181b; padding: 10px; border-radius: 8px; margin-bottom: 8px; border: 1px solid #27272a; }
.future-date { font-size: 10px; background: #27272a; padding: 2px 6px; rounded: 4px; color: #fbbf24; font-weight: bold; margin-right: 6px; }

/* SweetAlert Dark */
.swal2-popup { background: #18181b !important; color: #fff !important; border: 1px solid #27272a; font-family: 'Inter', sans-serif; font-size: 13px !important; }
.swal2-input, .swal2-select { background: #09090b !important; color: white !important; border: 1px solid #3f3f46 !important; }