/* NOC Panel — Hoja de estilos principal */
:root {
  --noc-bg:       #0a0e1a;
  --noc-surface:  #111827;
  --noc-surface2: #1f2937;
  --noc-surface3: #263040;
  --noc-accent:   #00d4ff;
  --noc-green:    #00ff88;
  --noc-red:      #ff4444;
  --noc-yellow:   #ffaa00;
  --noc-text:     #e2e8f0;
  --noc-muted:    #6b7280;
  --noc-border:   #1e293b;
  --topbar-h: 52px;
  --sidebar-w: 200px;
  --radius: 8px;
  --radius-sm: 4px;
  --transition: 150ms ease;
  font-size: 14px;
}
[data-theme="light"] {
  --noc-bg:       #f0f4f8;
  --noc-surface:  #ffffff;
  --noc-surface2: #e8edf3;
  --noc-surface3: #d4dce8;
  --noc-accent:   #0077cc;
  --noc-green:    #00a854;
  --noc-red:      #cc2200;
  --noc-yellow:   #cc7700;
  --noc-text:     #1a2332;
  --noc-muted:    #5a6a7a;
  --noc-border:   #c8d4e0;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body { background: var(--noc-bg); color: var(--noc-text); font-family: 'JetBrains Mono','Cascadia Code','Consolas',monospace; line-height: 1.5; overflow: hidden; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
input, textarea, select { font-family: inherit; background: var(--noc-surface2); color: var(--noc-text); border: 1px solid var(--noc-border); border-radius: var(--radius-sm); padding: 8px 12px; outline: none; transition: border-color var(--transition); }
input:focus, textarea:focus { border-color: var(--noc-accent); }

/* Topbar */
.topbar { position: fixed; top: 0; left: 0; right: 0; height: var(--topbar-h); background: var(--noc-surface); border-bottom: 1px solid var(--noc-border); display: flex; align-items: center; padding: 0 16px; gap: 16px; z-index: 1000; }
.topbar-left { display: flex; align-items: center; gap: 12px; min-width: 220px; }
.topbar-center { display: flex; align-items: center; gap: 8px; flex: 1; justify-content: center; }
.topbar-right { display: flex; align-items: center; gap: 12px; min-width: 220px; justify-content: flex-end; }
.logo { font-size: 18px; font-weight: 700; letter-spacing: -0.5px; }
.logo-accent { color: var(--noc-accent); }
.topbar-sep { color: var(--noc-border); }
.topbar-subtitle { color: var(--noc-muted); font-size: 11px; }
.summary-pill { display: flex; align-items: center; gap: 6px; padding: 4px 10px; background: var(--noc-surface2); border-radius: 20px; font-size: 12px; font-weight: 600; border: 1px solid var(--noc-border); }
.pill-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-green  { background: var(--noc-green);  box-shadow: 0 0 6px var(--noc-green); }
.dot-yellow { background: var(--noc-yellow); box-shadow: 0 0 6px var(--noc-yellow); }
.dot-red    { background: var(--noc-red);    box-shadow: 0 0 6px var(--noc-red); }
.dot-gray   { background: var(--noc-muted); }
.ws-indicator { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--noc-green); letter-spacing: 1px; }
.ws-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--noc-green); box-shadow: 0 0 6px var(--noc-green); animation: pulse 2s infinite; }
.ws-indicator.disconnected { color: var(--noc-red); }
.ws-indicator.disconnected .ws-dot { background: var(--noc-red); box-shadow: 0 0 6px var(--noc-red); animation: none; }
.topbar-time { font-size: 13px; font-weight: 600; letter-spacing: 1px; color: var(--noc-accent); min-width: 70px; text-align: center; }

/* Sidebar */
.sidebar { position: fixed; top: var(--topbar-h); left: 0; width: var(--sidebar-w); height: calc(100vh - var(--topbar-h)); background: var(--noc-surface); border-right: 1px solid var(--noc-border); display: flex; flex-direction: column; padding: 16px 0; z-index: 900; transition: width 200ms ease, padding 200ms ease; overflow: hidden; }
.sidebar.collapsed { width: 52px; padding: 16px 0; }
.sidebar.collapsed .nav-item span { display: none; }
.sidebar.collapsed .nav-item { justify-content: center; padding: 9px; gap: 0; }
.sidebar.collapsed .sidebar-footer { display: none; }
.sidebar.collapsed .sidebar-toggle-text { display: none; }
.sidebar-toggle { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; cursor: pointer; color: var(--noc-muted); border: 1px solid var(--noc-border); background: var(--noc-surface); border-radius: var(--radius-sm); transition: all var(--transition); flex-shrink: 0; }
.sidebar-toggle:hover { color: var(--noc-accent); border-color: var(--noc-accent); }
.sidebar-toggle svg { transition: transform 200ms ease; }
.sidebar.collapsed .sidebar-toggle svg { transform: rotate(180deg); }
.nav-menu { display: flex; flex-direction: column; gap: 2px; padding: 0 8px; flex: 1; }
.nav-item { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: var(--radius-sm); color: var(--noc-muted); font-size: 13px; transition: all var(--transition); }
.nav-item:hover { background: var(--noc-surface2); color: var(--noc-text); }
.nav-item.active { background: rgba(0,212,255,0.1); color: var(--noc-accent); border-left: 2px solid var(--noc-accent); }
.sidebar-footer { padding: 12px 16px; border-top: 1px solid var(--noc-border); }
.user-badge { font-size: 11px; color: var(--noc-muted); }

/* Main Content */
.main-content { position: fixed; top: var(--topbar-h); left: var(--sidebar-w); right: 0; bottom: 0; overflow-y: auto; padding: 20px; transition: left 200ms ease; }
.sidebar.collapsed ~ .main-content { left: 52px; }

/* Views */
.view { display: none; }
.view:not(.hidden) { display: block; }
.hidden { display: none !important; }

/* Login */
.view-login { display: flex; align-items: center; justify-content: center; min-height: 100%; }
.login-card { background: var(--noc-surface); border: 1px solid var(--noc-border); border-radius: var(--radius); padding: 40px; width: 360px; }
.login-logo { text-align: center; margin-bottom: 32px; }
.login-logo h1 { font-size: 28px; font-weight: 800; margin-top: 8px; }
.login-logo h1 span { color: var(--noc-accent); }
.login-logo p { color: var(--noc-muted); font-size: 12px; margin-top: 4px; }
.login-form { display: flex; flex-direction: column; gap: 16px; }
.input-group { display: flex; flex-direction: column; gap: 6px; }
.input-group label { font-size: 12px; color: var(--noc-muted); }
.input-group input, .input-group textarea { width: 100%; }

/* Buttons */
.btn-primary { background: var(--noc-accent); color: #000; font-weight: 700; padding: 10px 20px; border-radius: var(--radius-sm); font-size: 13px; transition: opacity var(--transition); }
.btn-primary:hover { opacity: 0.85; }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-secondary { background: var(--noc-surface2); color: var(--noc-text); border: 1px solid var(--noc-border); padding: 8px 16px; border-radius: var(--radius-sm); font-size: 13px; transition: border-color var(--transition); }
.btn-secondary:hover { border-color: var(--noc-accent); }
.btn-full { width: 100%; }
.btn-icon { background: none; color: var(--noc-muted); padding: 6px; border-radius: var(--radius-sm); font-size: 16px; transition: color var(--transition); }
.btn-icon:hover { color: var(--noc-red); }
.btn-back { background: none; color: var(--noc-accent); font-size: 13px; padding: 4px 0; }
.btn-sm { padding: 5px 10px; font-size: 12px; }
.error-msg { color: var(--noc-red); font-size: 12px; text-align: center; }

/* KPIs */
.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 20px; }
.kpi-card { background: var(--noc-surface); border: 1px solid var(--noc-border); border-radius: var(--radius); padding: 16px 20px; display: flex; flex-direction: column; gap: 2px; }
.kpi-label { font-size: 11px; color: var(--noc-muted); text-transform: uppercase; letter-spacing: 1px; }
.kpi-value { font-size: 32px; font-weight: 800; line-height: 1; }
.kpi-value.accent { color: var(--noc-accent); }
.kpi-sub { font-size: 11px; color: var(--noc-muted); }

/* Section Header */
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.section-title { font-size: 15px; font-weight: 700; }
.section-actions { display: flex; gap: 10px; align-items: center; }
.search-input { width: 200px; font-size: 13px; padding: 7px 12px; }

/* Server Grid */
.servers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 12px; }
.server-card { background: var(--noc-surface); border: 1px solid var(--noc-border); border-radius: var(--radius); padding: 16px; cursor: pointer; transition: border-color var(--transition), transform var(--transition); border-left: 3px solid var(--noc-muted); }
.server-card:hover { border-color: var(--noc-accent); transform: translateY(-1px); }
.server-card.status-ok       { border-left-color: var(--noc-green); }
.server-card.status-warning  { border-left-color: var(--noc-yellow); }
.server-card.status-critical { border-left-color: var(--noc-red); }
.server-card.status-offline  { border-left-color: var(--noc-muted); opacity: 0.6; }
.server-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.server-card-name { font-weight: 700; font-size: 14px; }
.server-card-ip { color: var(--noc-muted); font-size: 11px; margin-top: 2px; }
.server-status-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 3px; }
.status-ok .server-status-dot      { background: var(--noc-green);  box-shadow: 0 0 8px var(--noc-green);  animation: pulse 2s infinite; }
.status-warning .server-status-dot { background: var(--noc-yellow); box-shadow: 0 0 8px var(--noc-yellow); }
.status-critical .server-status-dot{ background: var(--noc-red);    box-shadow: 0 0 8px var(--noc-red);    animation: blink 1s infinite; }
.status-offline .server-status-dot { background: var(--noc-muted); }
.server-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 10px; }
.server-metric { text-align: center; }
.server-metric-val { font-size: 18px; font-weight: 700; display: block; }
.server-metric-lbl { font-size: 10px; color: var(--noc-muted); text-transform: uppercase; }
.server-metric-val.warn { color: var(--noc-yellow); }
.server-metric-val.crit { color: var(--noc-red); }
.server-card-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--noc-border); padding-top: 10px; font-size: 11px; color: var(--noc-muted); }
.calls-badge { background: rgba(0,212,255,0.15); color: var(--noc-accent); border-radius: 20px; padding: 2px 10px; font-weight: 600; }
.mini-bar { height: 4px; background: var(--noc-surface2); border-radius: 2px; overflow: hidden; margin-top: 4px; }
.mini-bar-fill { height: 100%; border-radius: 2px; background: var(--noc-green); transition: width 0.4s ease; }
.mini-bar-fill.warn { background: var(--noc-yellow); }
.mini-bar-fill.crit { background: var(--noc-red); }

/* Server Detail */
.detail-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.detail-title { display: flex; align-items: center; gap: 10px; flex: 1; }
.detail-title h2 { font-size: 20px; }
.detail-ip { color: var(--noc-muted); font-size: 13px; }
.status-badge { padding: 3px 10px; border-radius: 4px; font-size: 11px; font-weight: 700; letter-spacing: 1px; }
.status-badge.ok       { background: rgba(0,255,136,0.15);  color: var(--noc-green); }
.status-badge.warning  { background: rgba(255,170,0,0.15);  color: var(--noc-yellow); }
.status-badge.critical { background: rgba(255,68,68,0.15);  color: var(--noc-red); }
.status-badge.offline  { background: rgba(107,114,128,0.15);color: var(--noc-muted); }
.metrics-row { display: flex; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.metric-gauge { background: var(--noc-surface); border: 1px solid var(--noc-border); border-radius: var(--radius); padding: 16px; display: flex; flex-direction: column; align-items: center; gap: 4px; min-width: 140px; }
.gauge-label { font-size: 11px; color: var(--noc-muted); text-transform: uppercase; }
.gauge-value { font-size: 18px; font-weight: 700; color: var(--noc-accent); }
.metric-card-voip { background: var(--noc-surface); border: 1px solid var(--noc-border); border-radius: var(--radius); padding: 16px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; flex: 1; }
.voip-stat { display: flex; flex-direction: column; align-items: center; }
.voip-stat span { font-size: 28px; font-weight: 800; }
.voip-stat label { font-size: 10px; color: var(--noc-muted); text-transform: uppercase; margin-top: 2px; }
.green { color: var(--noc-green); }
.red   { color: var(--noc-red); }
.yellow{ color: var(--noc-yellow); }

/* Charts */
.charts-row { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; margin-bottom: 20px; }
.chart-panel { background: var(--noc-surface); border: 1px solid var(--noc-border); border-radius: var(--radius); padding: 16px; }
.chart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; font-size: 13px; }
.time-selector { display: flex; gap: 4px; }
.time-btn { background: var(--noc-surface2); color: var(--noc-muted); border: 1px solid var(--noc-border); padding: 3px 8px; border-radius: 4px; font-size: 11px; font-family: inherit; cursor: pointer; transition: all var(--transition); }
.time-btn.active { background: rgba(0,212,255,0.15); color: var(--noc-accent); border-color: var(--noc-accent); }

/* Alerts */
.alerts-panel { background: var(--noc-surface); border: 1px solid var(--noc-border); border-radius: var(--radius); padding: 16px; }
.alerts-panel h3 { font-size: 13px; margin-bottom: 12px; }
.alerts-list { display: flex; flex-direction: column; gap: 6px; }
.alert-item { display: flex; align-items: flex-start; gap: 10px; padding: 10px 12px; border-radius: var(--radius-sm); border-left: 3px solid; font-size: 12px; }
.alert-item.info     { background: rgba(0,212,255,0.05);  border-color: var(--noc-accent); }
.alert-item.warning  { background: rgba(255,170,0,0.08);  border-color: var(--noc-yellow); }
.alert-item.critical { background: rgba(255,68,68,0.08);  border-color: var(--noc-red); }
.alert-time  { color: var(--noc-muted); min-width: 80px; }
.alert-title { flex: 1; }

/* PCAP */
.pcap-upload-zone { border: 2px dashed var(--noc-border); border-radius: var(--radius); padding: 48px; text-align: center; cursor: pointer; transition: border-color var(--transition), background var(--transition); margin-bottom: 16px; }
.pcap-upload-zone:hover, .pcap-upload-zone.drag-over { border-color: var(--noc-accent); background: rgba(0,212,255,0.04); }
.upload-icon { font-size: 48px; margin-bottom: 12px; }
.muted { color: var(--noc-muted); font-size: 12px; }
.progress-bar { height: 6px; background: var(--noc-surface2); border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--noc-accent), var(--noc-green)); border-radius: 3px; transition: width 0.3s ease; width: 0%; }

/* AI Chat */
.ai-container { display: grid; grid-template-columns: 220px 1fr; gap: 16px; height: calc(100vh - var(--topbar-h) - 40px); }
.ai-sidebar { background: var(--noc-surface); border: 1px solid var(--noc-border); border-radius: var(--radius); padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.ai-sidebar h3 { font-size: 13px; }
.context-info { flex: 1; font-size: 12px; }
.ctx-item { display: flex; align-items: center; gap: 6px; padding: 6px 0; border-bottom: 1px solid var(--noc-border); font-size: 12px; }
.ctx-icon { font-size: 14px; }
.ai-chat { display: flex; flex-direction: column; background: var(--noc-surface); border: 1px solid var(--noc-border); border-radius: var(--radius); overflow: hidden; }
.chat-messages { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.chat-msg { display: flex; gap: 12px; }
.chat-msg.user { flex-direction: row-reverse; }
.msg-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--noc-surface2); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.msg-content { max-width: 70%; background: var(--noc-surface2); border-radius: var(--radius); padding: 12px 16px; font-size: 13px; line-height: 1.6; }
.chat-msg.user .msg-content { background: rgba(0,212,255,0.12); border: 1px solid rgba(0,212,255,0.25); }
.msg-content pre { background: #0a0e1a; padding: 8px; border-radius: 4px; overflow-x: auto; margin: 8px 0; font-size: 11px; }
.msg-content code { background: #0a0e1a; padding: 1px 4px; border-radius: 3px; font-family: monospace; font-size: 11px; }
.streaming-cursor { animation: blink 1s infinite; color: var(--noc-accent); }
.chat-input-row { display: flex; gap: 10px; padding: 12px 16px; border-top: 1px solid var(--noc-border); align-items: flex-end; }
.chat-input-row textarea { flex: 1; resize: none; min-height: 44px; }

/* Table */
.noc-table { width: 100%; border-collapse: collapse; background: var(--noc-surface); border-radius: var(--radius); overflow: hidden; font-size: 13px; }
.noc-table th { background: var(--noc-surface2); padding: 10px 14px; text-align: left; font-size: 11px; color: var(--noc-muted); text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px solid var(--noc-border); }
.noc-table td { padding: 10px 14px; border-bottom: 1px solid var(--noc-border); }
.noc-table tr:hover td { background: var(--noc-surface2); }
.empty-row { text-align: center; color: var(--noc-muted); }

/* Modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); display: flex; align-items: center; justify-content: center; z-index: 2000; }
.modal { background: var(--noc-surface); border: 1px solid var(--noc-border); border-radius: var(--radius); width: 560px; max-width: 95vw; max-height: 90vh; overflow-y: auto; }
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--noc-border); }
.modal-header h3 { font-size: 15px; }
.modal-close { background: none; color: var(--noc-muted); font-size: 18px; padding: 4px; }
.modal-close:hover { color: var(--noc-red); }
.modal-body { padding: 20px; }
.modal-footer { display: flex; justify-content: flex-end; gap: 10px; padding: 16px 20px; border-top: 1px solid var(--noc-border); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .span-2 { grid-column: span 2; }
.token-box { margin: 0 20px 20px; padding: 14px; background: rgba(0,255,136,0.05); border: 1px solid var(--noc-green); border-radius: var(--radius-sm); display: flex; flex-direction: column; gap: 8px; }
.token-box label { font-size: 11px; color: var(--noc-muted); }
.token-box code { font-family: monospace; font-size: 12px; word-break: break-all; color: var(--noc-green); }

/* Loading */
.loading-spinner { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 48px; color: var(--noc-muted); gap: 12px; grid-column: 1/-1; }
.spinner { width: 32px; height: 32px; border: 3px solid var(--noc-border); border-top-color: var(--noc-accent); border-radius: 50%; animation: spin 0.8s linear infinite; }

/* Animations */
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
@keyframes blink  { 0%,100%{opacity:1} 50%{opacity:0} }
@keyframes spin   { to{transform:rotate(360deg)} }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--noc-surface); }
::-webkit-scrollbar-thumb { background: var(--noc-surface3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--noc-muted); }

/* Responsive */
@media (max-width: 1024px) {
  .kpi-row { grid-template-columns: repeat(2,1fr); }
  .charts-row { grid-template-columns: 1fr; }
  .ai-container { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --sidebar-w: 0px; }
  .sidebar { display: none; }
  .kpi-row { grid-template-columns: 1fr 1fr; }
}

/* PCAP resultado styles */
.pcap-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--noc-border); }
.pcap-filename { font-weight: 700; font-size: 15px; display: block; }
.pcap-meta { color: var(--noc-muted); font-size: 12px; margin-top: 4px; display: block; }
.pcap-actions { display: flex; gap: 8px; }
.pcap-kpis { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; margin-bottom: 20px; }
.pcap-kpi { background: var(--noc-surface); border: 1px solid var(--noc-border); border-radius: 6px; padding: 10px; text-align: center; }
.pkv { display: block; font-size: 22px; font-weight: 800; line-height: 1; }
.pkl { display: block; font-size: 10px; color: var(--noc-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.pcap-section { margin-bottom: 24px; }
.anomalies-list { display: flex; flex-direction: column; gap: 6px; }
.anomaly-item { display: grid; grid-template-columns: 80px 160px 1fr auto; gap: 10px; padding: 8px 12px; border-radius: 4px; border-left: 3px solid; font-size: 12px; align-items: center; }
.anomaly-item.sev-critical { background: rgba(255,68,68,0.08);  border-color: var(--noc-red); }
.anomaly-item.sev-warning  { background: rgba(255,170,0,0.08);  border-color: var(--noc-yellow); }
.anomaly-item.sev-info     { background: rgba(0,212,255,0.05);  border-color: var(--noc-accent); }
.anom-sev { font-weight: 700; font-size: 10px; letter-spacing: 1px; }
.anom-type { font-weight: 600; }
.anom-detail { color: var(--noc-muted); }
.anom-cid { color: var(--noc-accent); font-size: 10px; font-family: monospace; }
.ladder-container { background: #111827; border: 1px solid var(--noc-border); border-radius: 8px; overflow: auto; max-height: 500px; }
.ladder-controls { display: flex; align-items: center; gap: 8px; }
.call-result-badge { padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 600; }
.call-result-badge.answered { background: rgba(0,255,136,0.15); color: var(--noc-green); }
.call-result-badge.failed   { background: rgba(255,68,68,0.15);  color: var(--noc-red); }
.call-result-badge.cancelled{ background: rgba(255,170,0,0.15);  color: var(--noc-yellow); }
.call-result-badge.timeout  { background: rgba(107,114,128,0.15);color: var(--noc-muted); }
.proto-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.proto-pill { display: flex; align-items: center; gap: 8px; background: var(--noc-surface2); border: 1px solid var(--noc-border); border-radius: 20px; padding: 4px 12px; }
.proto-name  { font-size: 12px; font-weight: 700; }
.proto-count { font-size: 11px; color: var(--noc-muted); }
.rtp-table-wrap { overflow-x: auto; margin-top: 12px; }
.mono  { font-family: monospace; font-size: 11px; }
.small { font-size: 11px; }
