* { box-sizing: border-box; margin: 0; padding: 0; font-family: -apple-system, system-ui, sans-serif; }
body { background: #f8fafc; color: #1e293b; }

.header {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-circle {
    width: 32px; height: 32px; border-radius: 50%;
    background: #1D77BD; color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 13px;
}
.logo-title { font-weight: 600; font-size: 14px; line-height: 1.2; }
.logo-subtitle { font-size: 10px; color: #94a3b8; line-height: 1.2; }

.container { max-width: 480px; margin: 0 auto; padding: 16px; }

.btn-link {
    background: none; border: none; color: #64748b; font-size: 13px;
    cursor: pointer; padding: 6px 10px; border-radius: 6px;
}
.btn-link:hover { background: #f1f5f9; }

.role-card {
    background: white; border: 1px solid #e2e8f0; border-radius: 12px;
    padding: 16px; display: flex; align-items: center; gap: 12px;
    cursor: pointer; text-align: left; width: 100%; margin-bottom: 12px;
}
.role-card:hover { border-color: #93c5fd; }
.role-icon {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}

.card {
    background: white; border: 1px solid #e2e8f0; border-radius: 12px;
    padding: 16px; margin-bottom: 12px;
}

input, textarea, select {
    width: 100%; border: 1px solid #e2e8f0; border-radius: 8px;
    padding: 8px 12px; font-size: 14px; font-family: inherit;
}
input:focus, textarea:focus { outline: none; border-color: #93c5fd; box-shadow: 0 0 0 2px #dbeafe; }

button { cursor: pointer; }
.btn-primary {
    background: #1D77BD; color: white; border: none; border-radius: 8px;
    padding: 10px; font-size: 14px; font-weight: 500; width: 100%;
}
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }

.btn-outline {
    background: transparent; border: 1px solid #e2e8f0; border-radius: 8px;
    padding: 8px; font-size: 13px; font-weight: 500; flex: 1;
}

.badge {
    display: inline-block; font-size: 11px; font-weight: 500;
    padding: 2px 8px; border-radius: 999px;
}
.badge-pending { background: #FAECE7; color: #D85A30; }
.badge-active { background: #E6F1FB; color: #185FA5; }
.badge-done { background: #EAF3DE; color: #3B6D11; }

.urgency-baixa { color: #5F5E5A; }
.urgency-media { color: #854F0B; }
.urgency-alta { color: #A32D2D; }

.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.stat-box { background: #f1f5f9; border-radius: 8px; padding: 8px; text-align: center; }
.stat-value { font-size: 18px; font-weight: 600; }
.stat-label { font-size: 10px; color: #94a3b8; }

.preferred-time {
    display: inline-flex; align-items: center; gap: 4px;
    background: #FAEEDA; color: #854F0B; font-size: 11px; font-weight: 500;
    padding: 3px 8px; border-radius: 999px; margin-bottom: 8px;
}
.field-label { font-size: 12px; color: #64748b; margin-bottom: 4px; display: block; }

.unverified-banner {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    background: #FCEBEB; color: #791F1F; font-size: 12px; font-weight: 500;
    padding: 8px 10px; border-radius: 8px; margin-bottom: 10px;
}
.btn-approve {
    background: #3B6D11; color: white; border: none; border-radius: 6px;
    padding: 5px 10px; font-size: 11px; font-weight: 500; white-space: nowrap;
}
.verified-tag {
    display: inline-flex; align-items: center; gap: 3px;
    color: #3B6D11; font-size: 11px; font-weight: 500; margin-bottom: 8px;
}

.ticket-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.timer-display { font-size: 24px; font-weight: 600; color: #185FA5; }

.muted { color: #94a3b8; font-size: 13px; }
.text-sm { font-size: 13px; }
.text-xs { font-size: 11px; }
.mb-2 { margin-bottom: 8px; }
.mt-2 { margin-top: 8px; }
.flex { display: flex; }
.gap-2 { gap: 8px; }
.divider { border-top: 1px solid #f1f5f9; padding-top: 10px; margin-top: 8px; }