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

:root {
  color-scheme: light;
  --page-bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --surface-strong: #f1f5f9;
  --text: #1e293b;
  --text-strong: #0f172a;
  --text-muted: #6b7280;
  --text-soft: #9ca3af;
  --border: #d1d5db;
  --border-soft: #e5e7eb;
  --border-faint: #f3f4f6;
  --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --card-shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.15);
  --menu-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
  --focus-ring: rgba(148, 163, 184, 0.18);
  --modal-backdrop: rgba(0, 0, 0, 0.5);
  --accent: #ea580c;
  --primary: #3b82f6;
  --success: #10b981;
  --success-strong: #059669;
  --danger: #ef4444;
  --danger-strong: #dc2626;
  --danger-soft: #fef2f2;
  --status-success-bg: #dcfce7;
  --status-success-text: #16a34a;
}

:root.dark-mode {
  color-scheme: dark;
  --page-bg: #0b1220;
  --surface: #111827;
  --surface-soft: #0f172a;
  --surface-strong: #1f2937;
  --text: #e5e7eb;
  --text-strong: #f8fafc;
  --text-muted: #94a3b8;
  --text-soft: #64748b;
  --border: #334155;
  --border-soft: #263449;
  --border-faint: #1e293b;
  --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  --card-shadow-hover: 0 12px 28px rgba(0, 0, 0, 0.35);
  --menu-shadow: 0 16px 40px rgba(0, 0, 0, 0.42);
  --focus-ring: rgba(59, 130, 246, 0.24);
  --modal-backdrop: rgba(0, 0, 0, 0.72);
  --danger-soft: rgba(239, 68, 68, 0.16);
  --status-success-bg: rgba(16, 185, 129, 0.16);
  --status-success-text: #34d399;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--page-bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  transition: background 0.2s ease, color 0.2s ease;
}

button,
input,
select {
  font: inherit;
}

.header {
  background: var(--surface);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.header h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-strong);
}

.header-controls {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.control-menu {
  position: relative;
}

.dropdown {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 40px;
  color: var(--text-strong);
}

.menu,
.row-menu,
.floating-menu {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  box-shadow: var(--menu-shadow);
  min-width: 160px;
  padding: 0.35rem;
  z-index: 30;
}

.menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
}

.menu button,
.row-menu button,
.floating-menu button {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.7rem;
  text-align: left;
}

.menu button:hover,
.row-menu button:hover,
.floating-menu button:hover,
.menu button.active {
  background: var(--surface-strong);
  color: var(--text-strong);
}

.date-picker {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  min-height: 40px;
  overflow: hidden;
  color: var(--text-strong);
}

.date-picker:hover,
.date-picker:focus-within {
  border-color: var(--text-muted);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

.date-picker i,
.date-picker span {
  pointer-events: none;
}

.date-input {
  appearance: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  inset: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
}

.export-btn {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 40px;
}

.theme-toggle {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-strong);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 40px;
  padding: 0.5rem 1rem;
}

.theme-toggle:hover,
.theme-toggle:focus-visible,
.dropdown:hover,
.filter-btn:hover {
  border-color: var(--text-muted);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

.main-content {
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  perspective: 1200px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 350px;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: start;
  perspective: 1000px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              background-color 0.3s ease;
  will-change: transform, box-shadow;
  transform-style: preserve-3d;
}

/* Dynamic Glare Spotlight Effect on Mouse Hover */
.card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.04) 25%,
    transparent 60%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 2;
}

:root.dark-mode .card::before {
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 30%,
    transparent 60%
  );
}

.card:hover::before {
  opacity: 1;
}

/* Card Hover Elevation, Lift & Glow */
.card:hover {
  transform: translateY(-6px) scale(1.008) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg));
  box-shadow: 0 20px 35px -8px rgba(15, 23, 42, 0.12), 0 8px 16px -4px rgba(15, 23, 42, 0.06);
  border-color: rgba(59, 130, 246, 0.35);
}

:root.dark-mode .card:hover {
  box-shadow: 0 22px 42px -8px rgba(0, 0, 0, 0.6), 0 0 20px rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.45);
}

/* Inner elements micro-animation */
.card:hover .card-title {
  color: var(--text-strong);
}

.card .amount {
  transition: transform 0.3s ease, color 0.3s ease;
}

.card:hover .amount {
  transform: translateY(-1px);
}

.card .change i {
  transition: transform 0.3s ease;
}

.card:hover .change i {
  transform: translateY(-2px) scale(1.1);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.card-menu {
  background: none;
  border: none;
  color: var(--text-soft);
  cursor: pointer;
  padding: 0.25rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.card-menu:hover,
.action-btn:hover {
  background: var(--surface-strong);
  color: var(--text-strong);
}

.amount {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.income-amount {
  color: var(--text-strong);
}

.expense-amount {
  color: var(--text-strong);
}

.change {
  font-size: 0.875rem;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.change.negative {
  color: var(--danger);
}

.change.neutral {
  color: var(--text-muted);
}

.my-card {
  background: var(--surface);
  color: var(--text);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-soft);
}

.my-card::before {
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(59, 130, 246, 0.12) 0%,
    rgba(59, 130, 246, 0.03) 30%,
    transparent 60%
  );
}

.my-card:hover {
  transform: translateY(-6px) scale(1.008) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg));
  box-shadow: 0 20px 35px -8px rgba(15, 23, 42, 0.12), 0 8px 16px -4px rgba(15, 23, 42, 0.06);
  border-color: rgba(59, 130, 246, 0.35);
}

:root.dark-mode .my-card:hover {
  box-shadow: 0 22px 42px -8px rgba(0, 0, 0, 0.6), 0 0 20px rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.45);
}

.card-chip {
  width: 42px;
  height: 30px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1.25rem;
  display: block;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.my-card:hover .card-chip {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.card-number {
  font-size: 1.25rem;
  letter-spacing: 0;
  margin-bottom: 1rem;
  font-family: "Courier New", monospace;
  color: var(--text-strong);
  font-weight: 600;
}


.card-holder {
  font-size: 0.875rem;
  color: var(--text-strong);
  font-weight: 500;
}

.card-logo {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: -8px;
}

.card-logo-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.logo-red {
  background: #ef4444;
}

.logo-orange {
  background: #f59e0b;
  margin-left: -8px;
}

.spending-section {
  margin-top: 2rem;
}

.spending-caption {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.spending-limit {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-strong);
}

.spending-used {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.progress-bar {
  height: 6px;
  background: var(--surface-strong);
  border: 1px solid var(--border-soft);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--accent);
  width: 37%;
  border-radius: 3px;
}

.chart-section {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.chart-container {
  height: 300px;
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 1rem;
  background: var(--surface-soft);
  border-radius: 8px;
  margin-top: 1rem;
  gap: 0.75rem;
}

.chart-bar {
  flex: 1;
  max-width: 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-width: 22px;
}

.chart-bar.active {
  outline: 2px solid rgba(234, 88, 12, 0.28);
  outline-offset: 4px;
}

.chart-bar-stack {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
}

.chart-bar-income {
  background: var(--success);
  border-radius: 4px 4px 0 0;
  min-height: 0;
  transition: height 0.2s ease;
}

.chart-bar-expense {
  background: var(--accent);
  border-radius: 4px 4px 0 0;
  min-height: 0;
  transition: height 0.2s ease;
}

.chart-bar-empty {
  height: 6px;
  background: var(--border-soft);
  border-radius: 999px;
}

.chart-tooltip {
  position: absolute;
  bottom: calc(100% + 0.6rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
  color: var(--text);
  display: none;
  flex-direction: column;
  font-size: 0.75rem;
  gap: 0.1rem;
  min-width: 150px;
  padding: 0.5rem 0.65rem;
  z-index: 5;
}

.chart-bar:hover .chart-tooltip,
.chart-bar.active .chart-tooltip {
  display: flex;
}

.income-text {
  color: var(--success-strong);
}

.expense-text {
  color: var(--accent);
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.expenses-breakdown {
  margin-top: 1rem;
}

.total-expenses {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.period-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.period-tab {
  background: transparent;
  border: none;
  border-radius: 999px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.3rem 0.65rem;
}

.period-tab.active {
  background: var(--surface-strong);
  color: var(--text-strong);
  font-weight: 600;
}

.period-amounts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.card-subtitle {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.period-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.period-amounts span,
.period-values span {
  min-width: 0;
}

.period-amounts span:nth-child(2),
.period-values span:nth-child(2) {
  text-align: center;
}

.period-amounts span:nth-child(3),
.period-values span:nth-child(3) {
  text-align: right;
}

.color-bar {
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, #ea580c, #f59e0b, #eab308, #10b981);
  margin-bottom: 1rem;
}

.expense-categories {
  list-style: none;
}

.expense-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-faint);
}

.category-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.category-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-food {
  background: #ea580c;
}
.dot-entertainment {
  background: #f59e0b;
}
.dot-shopping {
  background: #eab308;
}
.dot-investment {
  background: #10b981;
}

.transactions-section {
  grid-column: 1 / -1;
}

.section-header {
  display: flex;
  justify-content: between;
  align-items: center;
  margin-bottom: 1rem;
}

.filters {
  display: flex;
  gap: 1rem;
}

.filter-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 40px;
  color: var(--text-strong);
}

.filter-panel {
  align-items: end;
  background: var(--surface-soft);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  display: flex;
  gap: 1rem;
  margin: 0.75rem 0 1rem;
  padding: 0.85rem;
}

.filter-panel[hidden] {
  display: none;
}

.filter-panel label {
  color: var(--text-muted);
  display: grid;
  font-size: 0.75rem;
  font-weight: 600;
  gap: 0.35rem;
}

.filter-panel select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  min-height: 38px;
  min-width: 170px;
  padding: 0.45rem 0.65rem;
}

.chart-filter-panel {
  justify-content: flex-end;
  padding: 0.5rem;
}

.transactions-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.transactions-table th {
  text-align: left;
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
  white-space: nowrap;
}

.transactions-table th[data-sort-key] {
  cursor: pointer;
}

.transactions-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-faint);
  vertical-align: top;
}

.status-success {
  background: var(--status-success-bg);
  color: var(--status-success-text);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.action-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.transaction-category {
  font-weight: 600;
}

.transaction-description {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

.amount-positive {
  color: var(--success-strong);
  font-weight: 700;
}

.amount-negative {
  color: var(--danger);
  font-weight: 700;
}

.row-action {
  position: relative;
  width: max-content;
}

.row-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.25rem);
}

.row-menu button.danger {
  color: var(--danger-strong);
}

.row-menu button.danger:hover {
  background: var(--danger-soft);
  color: var(--danger-strong);
}

.empty-state {
  color: var(--text-muted);
  text-align: center;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--modal-backdrop);
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: var(--surface);
  border-radius: 8px;
  width: 500px;
  max-width: 90vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: slideIn 0.3s ease;
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem;
}

.modal-body {
  padding: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text);
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  background: var(--surface);
  color: var(--text);
}

.form-select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  background: var(--surface);
  color: var(--text);
}

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: end;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-secondary {
  background: var(--surface-strong);
  color: var(--text);
}

.add-buttons {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  z-index: 20;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
}

.fab-income {
  background: #10b981;
}

.fab-expense {
  background: #ef4444;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translate(-50%, -60%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

.floating-menu {
  position: fixed;
}

.notification {
  animation: slideInRight 0.25s ease;
  background: #10b981;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
  color: white;
  max-width: min(360px, calc(100vw - 2rem));
  padding: 0.9rem 1.1rem;
  position: fixed;
  right: 1.25rem;
  top: 1.25rem;
  z-index: 1001;
}

.notification.error {
  background: #ef4444;
}

.notification.leaving {
  animation: slideOutRight 0.25s ease forwards;
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

@media (max-width: 1200px) {
  .dashboard-grid {
    grid-template-columns: 1fr 1fr;
  }

  .chart-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .main-content {
    padding: 1rem;
  }

  .header {
    align-items: stretch;
    padding: 1rem;
  }

  .header-controls,
  .filters,
  .filter-panel {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .dropdown,
  .date-picker,
  .theme-toggle,
  .export-btn,
  .filter-btn,
  .filter-panel select {
    justify-content: center;
    width: 100%;
  }

  .transactions-section {
    overflow-x: auto;
  }

  .transactions-table {
    min-width: 720px;
  }

  .chart-tooltip {
    display: none !important;
  }
}
