:root {
  --bg-dark: #0a192f;
  --bg-gradient-start: #0a192f;
  --bg-gradient-end: #112240;
  --bg-card: rgba(17, 34, 64, 0.7);
  --primary: #e6b450;
  --text-main: #ccd6f6;
  --text-muted: #8892b0;
  --success: #64ffda; /* Alterado para um verde neon mais padrão (antes estava roxo/azulado?) */
  --error: #ef4444;
  --info: #3b82f6;
  --border: rgba(230, 180, 80, 0.1);
  
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --glass-border: 1px solid rgba(255, 255, 255, 0.05);
  
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Force link colors to avoid browser defaults (purple visited) */
a, a:visited, a:hover, a:active {
  text-decoration: none;
  color: inherit; /* Herda a cor do pai, a menos que especificado */
}

/* Specific IPv4 Link Style overrides */
.ipv4-link, .ipv4-link:visited {
  color: var(--success) !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0%, #1a3055 0%, var(--bg-dark) 60%),
              linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-gradient-end) 100%);
  background-attachment: fixed;
}

.app-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 2.5rem;
  animation: fadeInDown 0.8s ease-out;
}

.logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--primary);
  letter-spacing: -0.5px;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(230, 180, 80, 0.15);
}

.badge {
  background: rgba(230, 180, 80, 0.1);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(230, 180, 80, 0.2);
}

.subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Search Area */
.search-wrapper {
  width: 100%;
  max-width: 550px;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.search-box {
  display: flex;
  width: 100%;
  background: rgba(17, 34, 64, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 5px 5px 5px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.search-box:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  border-color: rgba(230, 180, 80, 0.3);
  background: rgba(17, 34, 64, 0.8);
}

input[type="text"] {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: 10px 0;
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
}

input[type="text"]::placeholder {
  color: rgba(136, 146, 176, 0.4);
}

.btn-primary {
  background: var(--primary);
  color: var(--bg-dark);
  border: none;
  padding: 10px 28px;
  border-radius: 40px;
  font-weight: 700;
  font-family: var(--font-heading);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(230, 180, 80, 0.2);
}

.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(230, 180, 80, 0.3);
}

.btn-primary:active {
  transform: scale(0.98);
}

/* Layout Containers */
.results-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.section-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  border-left: 3px solid var(--primary);
}

  /* Card Atendimentos 30 Dias */
.tickets-summary-group {
    margin-bottom: 2rem;
}

.ticket-summary-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Indicador lateral azul (similar à imagem) */
.ticket-summary-card::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 32px;
    height: 32px;
    background-color: #006699; /* Azul escuro da referência */
    border-radius: 8px;
    opacity: 0.8;
    z-index: 0;
}

.ticket-summary-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    z-index: 1;
}

.ticket-summary-header svg {
    color: white; /* Ícone sobre o quadrado azul */
    position: absolute;
    left: calc(1rem + 6px); /* Centraliza no quadrado */
    top: calc(1rem + 6px);
}

.ticket-summary-header span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

.ticket-count {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0.5rem 0 1.5rem 0;
    z-index: 1;
}

/* Container do Gráfico */
.ticket-chart-container {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.chart-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Gráfico de Pizza CSS */
.pie-chart {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(
        var(--highlight) 0% 50%, 
        rgba(255, 255, 255, 0.2) 50% 100%
    ); /* Default, será sobrescrito pelo JS */
    position: relative;
}

/* Buraco no meio para fazer Donut (opcional, mas fica mais bonito) */
.pie-chart::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 50%;
}

.chart-legend {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot.open {
    background-color: #3b82f6; /* Azul */
}

.dot.closed {
    background-color: rgba(255, 255, 255, 0.2); /* Cinza/Claro */
}

/* Responsividade: Seção 1: Cliente e Credenciais */
.section-group.credentials-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.credentials-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* New Layout Groups */
.connectivity-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.fiber-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.75rem;
}

/* Compact Fiber Cards */
.fiber-grid .info-card {
  padding: 0.6rem 0.8rem;
}

.fiber-grid .card-label {
  font-size: 0.65rem;
}

.fiber-grid .card-value {
  font-size: 0.9rem;
}

/* Cards Base */
.info-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px; /* Smaller radius */
  padding: 1rem; /* Reduced padding */
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.info-card:hover {
  transform: translateY(-2px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.5);
}

.card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.card-value {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  word-break: break-word;
}

/* Compact Card Modifier */
.compact-card {
  padding: 0.75rem 1rem;
}
.compact-card .card-value {
  font-size: 0.95rem;
}

/* Highlight Card (Cliente) - Reduced Size */
.highlight-card {
  background: linear-gradient(135deg, rgba(230, 180, 80, 0.05), rgba(10, 25, 47, 0.4));
  border: 1px solid rgba(230, 180, 80, 0.15);
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem; /* Reduced from 2rem */
}

.highlight-card .card-icon {
  background: linear-gradient(135deg, rgba(230, 180, 80, 0.2), rgba(230, 180, 80, 0.05));
  color: var(--primary);
  padding: 10px; /* Reduced from 16px */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(230, 180, 80, 0.1);
}

.highlight-card .card-icon svg {
  width: 20px;
  height: 20px;
}

.highlight-card h3 {
  font-size: 0.75rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.1rem;
}

.highlight-card p {
  font-size: 1.2rem; /* Reduced from 1.75rem */
  font-weight: 700;
  font-family: var(--font-heading);
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Credential Cards Special Style */
.credential-card {
  border-left: 2px solid var(--primary);
}

.card-header-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.card-header-icon .card-label {
  margin-bottom: 0;
  color: var(--primary);
  opacity: 0.9;
}

/* Monospace for technical data */
.monospace {
  font-family: 'Fira Code', monospace;
  letter-spacing: -0.5px;
}

/* IPv4 Link */
.ipv4-link {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 6px 12px;
  background: rgba(100, 255, 218, 0.1);
  color: var(--success);
  border-radius: 6px;
  font-size: 0.8rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
  border: 1px solid rgba(100, 255, 218, 0.2);
}

.ipv4-link:hover {
  background: rgba(100, 255, 218, 0.2);
  transform: translateY(-1px);
}

/* Connection Status Dot */
.connection-wrapper {
  display: flex;
  align-items: center;
  justify-content: center; /* Centraliza horizontalmente */
  gap: 12px;
  width: 100%; /* Garante que ocupe o espaço para centralizar */
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--text-muted);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  position: relative;
}

.status-dot.online {
  background-color: var(--success);
  box-shadow: 0 0 15px var(--success), 0 0 5px var(--success);
  animation: pulse-green 2s infinite;
}

.status-dot.offline {
  background-color: var(--error);
  box-shadow: 0 0 15px var(--error), 0 0 5px var(--error);
  animation: pulse-red 2s infinite;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(100, 255, 218, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(100, 255, 218, 0); }
  100% { box-shadow: 0 0 0 0 rgba(100, 255, 218, 0); }
}

@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Signals Colors */
.signal-green { color: var(--success) !important; text-shadow: 0 0 15px rgba(0, 247, 255, 0.4); }
.signal-blue { color: var(--info) !important; text-shadow: 0 0 15px rgba(59, 130, 246, 0.4); }
.signal-red { color: var(--error) !important; text-shadow: 0 0 15px rgba(239, 68, 68, 0.4); }
.signal-orange { color: #f97316 !important; text-shadow: 0 0 15px rgba(249, 115, 22, 0.4); }

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsiveness */
@media (max-width: 768px) {
  .credentials-row {
    grid-template-columns: 1fr;
  }
  
  .highlight-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }
  
  .highlight-card .card-icon {
    margin-bottom: 0.5rem;
  }
  
  .full-width-mobile {
    grid-column: 1 / -1;
  }
}

/* Ticket Overview Card */
.ticket-overview-card {
  position: relative;
  overflow: hidden;
}

.ticket-stats-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.pie-chart-mini {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  position: relative;
  /* Mask for donut effect */
  -webkit-mask: radial-gradient(transparent 55%, black 56%);
  mask: radial-gradient(transparent 55%, black 56%);
}

.ticket-count-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ticket-count-box .card-value {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.ticket-legend-mini {
  display: flex;
  gap: 8px;
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.legend-dot.open {
  background-color: #3b82f6; /* Blue */
  box-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
}

.legend-dot.closed {
  background-color: rgba(255,255,255,0.2);
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.modal-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal-content {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.3s ease;
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  font-size: 1.25rem;
  color: var(--highlight);
  margin: 0;
}

.close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
}

.close-btn:hover {
  color: var(--error);
}

.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
}

.tickets-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ticket-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem;
  transition: transform 0.2s, background 0.2s;
}

.ticket-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.ticket-id {
  font-family: 'Fira Code', monospace;
  color: var(--highlight);
}

.ticket-title {
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.ticket-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.status-aberto, .status-novo, .status-pendente {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-fechado, .status-resolvido, .status-finalizado, .status-s {
  background: rgba(100, 255, 218, 0.15);
  color: var(--success);
  border: 1px solid rgba(100, 255, 218, 0.3);
}

.status-cancelado {
  background: rgba(239, 68, 68, 0.15);
  color: var(--error);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  border-color: var(--highlight);
  color: var(--highlight);
  background: rgba(100, 255, 218, 0.05);
}

.ticket-detail-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.ticket-detail-description label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: block;
}

.ticket-detail-description textarea {
  width: 100%;
  min-height: 220px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px;
  color: var(--text-light);
  resize: none;
  font-family: var(--font-body);
}


.ai-summary-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ai-summary-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1rem;
}

.ai-summary-block h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.ai-summary-block p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
  white-space: pre-wrap;
}


/* ===============================
   MODAL IA – ANÁLISE
================================ */

#modalAiSummary {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
}

/* Container geral da análise */
#aiSummaryContent {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 8px 4px;
  color: #e5e7eb;
  font-size: 14px;
  line-height: 1.6;
}

/* Bloco individual */
.ai-summary-block {
  background: linear-gradient(145deg, #0f172a, #020617);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}

/* Título */
.ai-summary-block h4 {
  margin: 0 0 8px 0;
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-transform: uppercase;
  color: #38bdf8; /* azul */
  border-left: 4px solid #38bdf8;
  padding-left: 10px;
}

/* Texto normal */
.ai-summary-block p {
  margin: 0;
  color: #e5e7eb;
  font-size: 14px;
}

/* Lista */
.ai-summary-block ul {
  margin: 6px 0 0 0;
  padding-left: 18px;
}

/* Item da lista */
.ai-summary-block li {
  margin-bottom: 6px;
  color: #d1d5db;
}

/* Destaque chave:valor */
.ai-summary-block li strong {
  color: #facc15; /* dourado */
}

/* ===== MODAL IA ===== */
#modalAiSummary {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;
}

#modalAiSummary.hidden {
  display: none;
}

#modalAiSummary .modal-content {
  width: 90%;
  max-width: 900px;
  max-height: 85vh;

  background: radial-gradient(
    circle at top,
    #0f172a,
    #020617 70%
  );

  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);

  display: flex;
  flex-direction: column;
}


#aiSummaryContent {
  margin-top: 16px;
  padding-right: 8px;

  overflow-y: auto;
  max-height: calc(85vh - 120px);

  white-space: normal;      /* 🔥 MATA O PROBLEMA */
  word-break: break-word;
  line-height: 1.6;
}

.ai-summary-block {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;

  padding: 16px 18px;
  margin-bottom: 16px;
}

.ai-summary-block h4 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;

  color: #38bdf8;
}

.ai-summary-block p {
  margin: 0;
  color: #e5e7eb;
  font-size: 14px;
}

.ai-summary-block ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.ai-summary-block li {
  margin-bottom: 6px;
  color: #d1d5db;
  font-size: 14px;
}

#aiSummaryContent {
  display: block;
  min-height: 80px;
  color: #e5e7eb;
  font-size: 14px;
  line-height: 1.6;
  white-space: normal;
}

.ai-summary-block {
  padding: 16px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
}
