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

body {
  font-family: 'Inter', Arial, sans-serif;
  background: #1a1b29;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 25px;
  overflow-y: visible;
  min-height: 100vh;
}

h1 {
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

/* Back Button */
.back-button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  background: #4CAF50;
  padding: 8px;
  border-radius: 8px;
  font-weight: 500;
  position: relative;
  margin-bottom: 20px;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
  transition: all 0.3s ease;
}

.back-button i {
  font-size: 24px;
}

.back-button:hover {
  background: #43A047;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

/* Filter Container */
.filter-container {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.month-filter {
  background: #252640;
  border-radius: 15px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.1);
}

.month-nav {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  min-width: 44px;
  min-height: 44px;
  touch-action: manipulation;
}

.month-nav:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(0);
  box-shadow: none;
}

.month-nav:active {
  background: rgba(255,255,255,0.2);
  transform: scale(0.95);
}

.view-all-btn {
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.4);
  color: #4CAF50;
  cursor: pointer;
  padding: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-left: 5px;
  min-width: 44px;
  min-height: 44px;
  touch-action: manipulation;
}

.view-all-btn:hover {
  background: rgba(76, 175, 80, 0.3);
  transform: scale(1.1);
}

.view-all-btn:active {
  background: rgba(76, 175, 80, 0.4);
  transform: scale(0.95);
}

.view-all-btn.active {
  background: #4CAF50;
  color: white;
  box-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
}

.current-month {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  min-width: 180px;
  text-align: center;
  text-transform: capitalize;
}

/* Financial Summary */
.financial-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.summary-card {
  background: #252640;
  border-radius: 20px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.summary-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.summary-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

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

.summary-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.income-card {
  border-left: 4px solid #4CAF50;
}

.income-card .summary-icon {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
}

.expense-card {
  border-left: 4px solid #f44336;
}

.expense-card .summary-icon {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
}

.balance-card {
  border-left: 4px solid #2196F3;
}

.balance-card .summary-icon {
  background: rgba(33, 150, 243, 0.2);
  color: #2196F3;
}

.balance-card.positive {
  border-left-color: #4CAF50;
}

.balance-card.positive .summary-icon {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
}

.balance-card.negative {
  border-left-color: #f44336;
}

.balance-card.negative .summary-icon {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
}

.summary-info {
  flex: 1;
}

.summary-info h3 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.summary-value {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Tabs */
.tabs-container {
  margin-bottom: 30px;
}

.tabs {
  display: flex;
  gap: 10px;
  background: #252640;
  padding: 8px;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.tab {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  touch-action: manipulation;
}

.tab:hover {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
}

.tab:active {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(0.98);
}

.tab.active {
  background: #4CAF50;
  color: #fff;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.tab i {
  font-size: 20px;
}

/* Tab Content */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Overview Section (Receitas) */
.overview-section {
  margin-bottom: 30px;
  overflow: visible;
}

.overview-section h2 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 600;
}

.categories-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  overflow: visible;
}

.category-card {
  background: #252640;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: visible;
}

.receita-category {
  border-left: 4px solid #4CAF50;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.category-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.category-title i {
  font-size: 28px;
  color: #4CAF50;
}

.category-title h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.category-total {
  font-size: 24px;
  font-weight: 700;
  color: #4CAF50;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.category-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: visible;
}

.category-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.2s ease;
}

.category-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.item-description {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.item-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 4px;
}

.item-date i {
  font-size: 14px;
}

.item-value {
  font-size: 16px;
  font-weight: 600;
  color: #4CAF50;
  white-space: nowrap;
}

.empty-state {
  text-align: center;
  padding: 40px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
}

/* Dashboard (Despesas) */
.dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: visible;
}

.card {
  background: #252640;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  position: relative;
  overflow: visible;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
  min-width: 0;
  min-height: 420px;
  backdrop-filter: blur(10px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

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

@media screen and (max-width: 768px) {
  .card {
    overflow: visible;
    min-height: auto;
  }
}

.card h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 700;
  padding-right: 60px;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.valores-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin-bottom: 20px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  position: relative;
}

.valor {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  letter-spacing: -0.3px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  padding: 0 6px;
}

.valor-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.valores-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin: 0 8px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.valores-separator i {
  font-size: 14px;
  color: #ffffff;
  opacity: 0.9;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.valores-separator:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(180deg);
}

.valor span:last-child {
  display: flex;
  align-items: baseline;
}

.valor span:last-child::before {
  content: 'R$';
  font-size: 14px;
  margin-right: 5px;
  opacity: 0.8;
}

.category-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  opacity: 0.9;
  padding: 15px;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0px); }
}

.card[data-category="PAULA"] {
  background: linear-gradient(135deg, rgba(255,107,107,0.15) 0%, rgba(37,38,64,0.95) 100%);
  box-shadow: 0 8px 32px rgba(255,107,107,0.2);
  border: 1px solid rgba(255,107,107,0.3);
}

.card[data-category="PENSAO"] {
  background: linear-gradient(135deg, rgba(150,206,180,0.15) 0%, rgba(37,38,64,0.95) 100%);
  box-shadow: 0 8px 32px rgba(150,206,180,0.2);
  border: 1px solid rgba(150,206,180,0.3);
}

.card[data-category="CASA"] {
  background: linear-gradient(135deg, rgba(168,230,207,0.15) 0%, rgba(37,38,64,0.95) 100%);
  box-shadow: 0 8px 32px rgba(168,230,207,0.2);
  border: 1px solid rgba(168,230,207,0.3);
}

.card[data-category="GASTOS_NA_PRAIA"] {
  background: linear-gradient(135deg, rgba(254,195,166,0.15) 0%, rgba(37,38,64,0.95) 100%);
  box-shadow: 0 8px 32px rgba(254,195,166,0.2);
  border: 1px solid rgba(254,195,166,0.3);
}

.card[data-category="DESPEZAS_COM_CARRO"] {
  background: linear-gradient(135deg, rgba(255,217,61,0.15) 0%, rgba(37,38,64,0.95) 100%);
  box-shadow: 0 8px 32px rgba(255,217,61,0.2);
  border: 1px solid rgba(255,217,61,0.3);
}

.card[data-category="THEO"] {
  background: linear-gradient(135deg, rgba(78,205,196,0.15) 0%, rgba(37,38,64,0.95) 100%);
  box-shadow: 0 8px 32px rgba(78,205,196,0.2);
  border: 1px solid rgba(78,205,196,0.3);
}

.card[data-category="GASTOS_DESNECESSARIOS"] {
  background: linear-gradient(135deg, rgba(255,154,158,0.15) 0%, rgba(37,38,64,0.95) 100%);
  box-shadow: 0 8px 32px rgba(255,154,158,0.2);
  border: 1px solid rgba(255,154,158,0.3);
}

.card[data-category="LORIVAL"] {
  background: linear-gradient(135deg, rgba(108,92,231,0.15) 0%, rgba(37,38,64,0.95) 100%);
  box-shadow: 0 8px 32px rgba(108,92,231,0.2);
  border: 1px solid rgba(108,92,231,0.3);
}

/* Details */
.details {
  margin-top: 20px;
  max-height: none;
  overflow-y: visible;
  padding-right: 12px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.details::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.details::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 3px;
}

.details::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.details::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

.comparison-summary {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.comparison-header {
  margin-bottom: 15px;
  font-size: clamp(13px, 1.8vw, 15px);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.month-comparison {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  margin-bottom: 10px;
  background: rgba(76, 175, 80, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(76, 175, 80, 0.1);
}

.month-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.month-title i {
  color: #ffd700;
  font-size: 20px;
}

.month-value {
  font-size: 15px;
  color: #ffffff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.month-value i {
  color: #4caf50;
  font-size: 20px;
}

.month-icon {
  color: #4caf50;
  font-size: 20px;
}

.media-gastos {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.media-label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.media-label i {
  color: #4caf50;
}

.media-value {
  font-size: 16px;
  color: #4caf50;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.top-expenses {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.top-expenses-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-expenses-header i {
  font-size: 24px;
  color: #FFD700;
}

.top-expenses-header span {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.top-expense-item {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.top-expense-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.top-expense-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.1);
  color: #FFD700;
  font-weight: 700;
  font-size: 14px;
}

.top-expense-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.top-expense-description {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}

.top-expense-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-expense-date i {
  font-size: 14px;
}

.top-expense-value {
  font-size: 15px;
  font-weight: 600;
  color: #4CAF50;
  white-space: nowrap;
  padding-left: 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.historico-completo {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.historico-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 0 5px;
}

.historico-header i {
  font-size: 24px;
  color: #4CAF50;
}

.historico-header span {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.detail-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 10px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 15px;
}

.detail-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.detail-date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
}

.detail-date i {
  font-size: 16px;
  color: #4CAF50;
}

.detail-description {
  color: #fff;
  font-weight: 600;
  font-size: clamp(14px, 2vw, 16px);
  letter-spacing: 0.3px;
  text-shadow: 0 1px 1px rgba(0,0,0,0.3);
}

.detail-value {
  color: #4CAF50;
  font-weight: 700;
  font-size: clamp(15px, 2vw, 17px);
  text-shadow: 0 1px 2px rgba(76, 175, 80, 0.2);
  white-space: nowrap;
}

.detail-value::before {
  content: '';
  font-size: 0;
}

/* Delete Buttons */
.delete-btn,
.delete-btn-small {
  background: rgba(244, 67, 54, 0.2);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #f44336;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 36px;
  touch-action: manipulation;
}

.delete-btn:hover,
.delete-btn-small:hover {
  background: rgba(244, 67, 54, 0.3);
  transform: scale(1.1);
}

.delete-btn:active,
.delete-btn-small:active {
  background: rgba(244, 67, 54, 0.4);
  transform: scale(0.95);
}

.delete-btn i,
.delete-btn-small i {
  font-size: 18px;
}

.delete-btn-small {
  padding: 6px;
  min-width: 32px;
  min-height: 32px;
}

.delete-btn-small i {
  font-size: 16px;
}

/* FAB */
.fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 999;
  touch-action: manipulation;
  min-width: 56px;
  min-height: 56px;
}

.fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(76, 175, 80, 0.4);
}

.fab:active {
  transform: scale(0.95);
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

/* Modals */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.modal-content {
  width: 100%;
  max-width: 500px;
  padding: 25px;
  margin: 0 auto;
  background: #252640;
  border-radius: 15px;
  color: #fff;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.modal-content h2 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #fff;
}

.modal-tipo {
  text-align: center;
  padding: 40px 30px;
}

.tipo-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.tipo-button {
  padding: 40px 20px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 15px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  font-weight: 600;
}

.tipo-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.receita-button:hover {
  border-color: #4CAF50;
  background: rgba(76, 175, 80, 0.1);
}

.receita-button i {
  font-size: 48px;
  color: #4CAF50;
}

.despesa-button:hover {
  border-color: #f44336;
  background: rgba(244, 67, 54, 0.1);
}

.despesa-button i {
  font-size: 48px;
  color: #f44336;
}

.cancel-button {
  width: 100%;
  padding: 12px;
  background: #363756;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cancel-button:hover {
  background: #454560;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #8c8c9a;
  font-size: 14px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px;
  border: 2px solid #363756;
  border-radius: 10px;
  background: #1a1b29;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #4CAF50;
}

.buttons {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 30px;
}

button {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

button[type="submit"] {
  background: #4CAF50;
  color: white;
}

button[type="button"] {
  background: #363756;
  color: #fff;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

/* Loading Overlay */
.global-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 27, 41, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(5px);
}

.loader-content {
  text-align: center;
  color: #fff;
}

.spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  border: 4px solid rgba(76, 175, 80, 0.2);
  border-top: 4px solid #4CAF50;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-content p {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

/* Success Message */
.success-message {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #4CAF50;
  color: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(76, 175, 80, 0.4);
  display: none;
  z-index: 10000;
  font-weight: 500;
  font-size: 15px;
  transform: translateX(400px);
  transition: transform 0.3s ease;
}

.success-message.show {
  transform: translateX(0);
}

/* Error Message */
.error-message {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #f44336;
  color: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(244, 67, 54, 0.4);
  display: none;
  z-index: 10000;
  font-weight: 500;
  font-size: 15px;
  transform: translateX(400px);
  transition: transform 0.3s ease;
}

.error-message.show {
  transform: translateX(0);
}

/* Ajustes gerais para mobile */
@media screen and (max-width: 768px) {
  body {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    position: relative;
    -webkit-overflow-scrolling: touch;
  }

  .container {
    overflow: visible;
    min-height: auto;
    padding: 15px 20px;
    padding-bottom: 100px;
  }

  h1 {
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
  }

  .back-button {
    width: 44px;
    height: 44px;
    margin-bottom: 15px;
  }

  .month-filter {
    padding: 12px 18px;
    gap: 12px;
  }

  .current-month {
    font-size: 16px;
    min-width: 160px;
  }

  .month-nav {
    padding: 10px;
  }

  .month-nav i {
    font-size: 24px;
  }

  .financial-summary {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 25px;
  }

  .summary-card {
    padding: 20px;
    gap: 16px;
    flex-direction: row;
    align-items: center;
  }

  .summary-icon {
    width: 55px;
    height: 55px;
    font-size: 28px;
    flex-shrink: 0;
  }

  .summary-info h3 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .summary-value {
    font-size: 24px;
  }

  .tabs {
    padding: 8px;
    gap: 8px;
  }

  .tab {
    padding: 12px 16px;
    font-size: 15px;
    gap: 6px;
  }

  .tab i {
    font-size: 20px;
  }

  .dashboard {
    grid-template-columns: 1fr;
    gap: 16px;
    overflow: visible;
  }

  .card {
    overflow: visible;
    min-height: auto;
    padding: 18px;
  }

  .card h3 {
    font-size: 18px;
    padding-right: 50px;
    margin-bottom: 12px;
  }

  .valores-container {
    padding: 12px;
    margin-bottom: 16px;
  }

  .valor {
    font-size: 18px;
    padding: 0 4px;
  }

  .valor-label {
    font-size: 11px;
    margin-bottom: 3px;
  }

  .valores-separator {
    width: 24px;
    height: 24px;
    margin: 0 6px;
  }

  .valores-separator i {
    font-size: 12px;
  }

  .category-icon {
    font-size: 30px;
    padding: 12px;
    top: 18px;
    right: 18px;
  }

  .details {
    overflow: visible !important;
    max-height: none !important;
    margin-top: 16px;
  }

  .category-items {
    overflow: visible;
  }

  .categories-list {
    overflow: visible;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .category-card {
    padding: 18px;
  }

  .category-title i {
    font-size: 26px;
  }

  .category-title h3 {
    font-size: 17px;
  }

  .category-total {
    font-size: 22px;
  }

  .category-item {
    padding: 12px;
    gap: 12px;
  }

  .item-description {
    font-size: 14px;
  }

  .item-date {
    font-size: 12px;
  }

  .item-value {
    font-size: 15px;
  }

  .fab {
    width: 56px;
    height: 56px;
    bottom: 25px;
    right: 25px;
  }

  .fab i {
    font-size: 24px;
  }

  .modal-content {
    width: 95%;
    max-width: 400px;
    padding: 25px;
    margin: 15px auto;
  }

  .modal-content h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .form-group input,
  .form-group select {
    padding: 14px;
    font-size: 16px;
  }

  .buttons {
    gap: 10px;
    margin-top: 25px;
  }

  button {
    padding: 12px 20px;
    font-size: 15px;
  }

  .tipo-button {
    padding: 30px 20px;
    font-size: 16px;
  }

  .tipo-button i {
    font-size: 44px;
  }
}

/* Responsive - iPads (768px - 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    padding: 20px 30px;
    padding-bottom: 80px;
  }

  h1 {
    font-size: 32px;
    margin-bottom: 35px;
  }

  .financial-summary {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .summary-card {
    padding: 30px;
  }

  .summary-icon {
    width: 70px;
    height: 70px;
    font-size: 36px;
  }

  .summary-value {
    font-size: 32px;
  }

  .tabs {
    padding: 10px;
  }

  .tab {
    padding: 16px 24px;
    font-size: 18px;
  }

  .categories-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .category-card {
    padding: 25px;
  }

  .dashboard {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .card {
    padding: 25px;
    min-height: 450px;
  }

  .card h3 {
    font-size: 22px;
  }

  .valores-container {
    padding: 15px;
  }

  .valor {
    font-size: 24px;
  }

  .category-icon {
    font-size: 36px;
    top: 25px;
    right: 25px;
  }

  .modal-content {
    max-width: 600px;
    padding: 35px;
  }

  .fab {
    width: 64px;
    height: 64px;
    bottom: 35px;
    right: 35px;
  }

  .fab i {
    font-size: 28px;
  }
}

/* Responsive - iPhones (maiores: Pro Max, Plus) 414px - 480px */
@media screen and (min-width: 390px) and (max-width: 480px) {
  body {
    overflow-y: auto;
    height: auto;
  }

  .container {
    padding: 12px 18px;
    padding-bottom: 80px;
    overflow: visible;
  }

  h1 {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .back-button {
    width: 44px;
    height: 44px;
    margin-bottom: 15px;
  }

  .back-button i {
    font-size: 26px;
  }

  .month-filter {
    padding: 12px 20px;
  }

  .current-month {
    font-size: 19px;
    min-width: 200px;
  }

  .month-nav i {
    font-size: 26px;
  }

  .financial-summary {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .summary-card {
    padding: 22px;
    gap: 18px;
  }

  .summary-icon {
    width: 65px;
    height: 65px;
    font-size: 30px;
  }

  .summary-info h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .summary-value {
    font-size: 28px;
  }

  .tabs {
    padding: 10px;
    gap: 12px;
  }

  .tab {
    padding: 14px 18px;
    font-size: 17px;
  }

  .tab i {
    font-size: 22px;
  }

  .overview-section h2 {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .categories-list {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
  }

  .category-card {
    padding: 20px;
  }

  .category-title i {
    font-size: 30px;
  }

  .category-title h3 {
    font-size: 19px;
  }

  .category-total {
    font-size: 26px;
  }

  .category-item {
    padding: 14px;
  }

  .item-description {
    font-size: 15px;
  }

  .item-date {
    font-size: 13px;
  }

  .item-value {
    font-size: 17px;
  }

  .dashboard {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 20px;
  }

  .card {
    padding: 20px;
    min-height: auto;
  }

  .details {
    max-height: none;
    overflow: visible;
  }

  .card h3 {
    font-size: 18px;
  }

  .valores-container {
    padding: 12px;
  }

  .valor {
    font-size: 20px;
  }

  .valor-label {
    font-size: 12px;
  }

  .category-icon {
    font-size: 34px;
  }

  .comparison-header {
    font-size: 15px;
  }

  .month-comparison {
    padding: 14px;
  }

  .month-title {
    font-size: 15px;
  }

  .month-value {
    font-size: 16px;
  }

  .top-expenses {
    padding: 18px;
  }

  .top-expense-item {
    padding: 14px;
  }

  .detail-item {
    padding: 14px;
    gap: 12px;
  }

  .detail-description {
    font-size: 15px;
  }

  .detail-value {
    font-size: 16px;
  }

  .fab {
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
  }

  .fab i {
    font-size: 26px;
  }

  .modal-content {
    padding: 28px;
  }

  .modal-content h2 {
    font-size: 26px;
  }

  .form-group input,
  .form-group select {
    padding: 16px;
    font-size: 17px;
  }

  button {
    padding: 14px 26px;
    font-size: 16px;
  }

  .tipo-button {
    padding: 35px 20px;
    font-size: 19px;
  }

  .tipo-button i {
    font-size: 50px;
  }

  .delete-btn {
    padding: 10px;
  }

  .delete-btn i {
    font-size: 20px;
  }
}

/* Responsive - iPhones pequenos e médios (até 390px) */
@media screen and (max-width: 390px) {
  body {
    overflow-y: auto;
    height: auto;
  }

  .container {
    padding: 10px 15px;
    padding-bottom: 80px;
    overflow: visible;
  }

  h1 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .back-button {
    width: 40px;
    height: 40px;
  }

  .back-button i {
    font-size: 22px;
  }

  .month-filter {
    padding: 10px 16px;
  }

  .current-month {
    font-size: 16px;
    min-width: 160px;
  }

  .month-nav i {
    font-size: 22px;
  }

  .financial-summary {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .summary-card {
    padding: 18px;
    gap: 15px;
  }

  .summary-icon {
    width: 55px;
    height: 55px;
    font-size: 26px;
  }

  .summary-info h3 {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .summary-value {
    font-size: 24px;
  }

  .tabs {
    padding: 8px;
    gap: 8px;
  }

  .tab {
    padding: 12px 16px;
    font-size: 15px;
  }

  .tab i {
    font-size: 20px;
  }

  .overview-section h2 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .categories-list {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
  }

  .category-card {
    padding: 16px;
  }

  .category-title i {
    font-size: 26px;
  }

  .category-title h3 {
    font-size: 16px;
  }

  .category-total {
    font-size: 22px;
  }

  .category-item {
    padding: 12px;
  }

  .item-description {
    font-size: 14px;
  }

  .item-date {
    font-size: 12px;
  }

  .item-value {
    font-size: 15px;
  }

  .dashboard {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
  }

  .card {
    padding: 16px;
    min-height: auto;
  }

  .details {
    max-height: none;
    overflow: visible;
  }

  .card h3 {
    font-size: 16px;
    padding-right: 50px;
  }

  .valores-container {
    padding: 10px;
  }

  .valor {
    font-size: 18px;
    padding: 0 4px;
  }

  .valor-label {
    font-size: 10px;
  }

  .valores-separator {
    width: 22px;
    height: 22px;
    margin: 0 6px;
  }

  .valores-separator i {
    font-size: 12px;
  }

  .category-icon {
    font-size: 28px;
    padding: 12px;
    top: 16px;
    right: 16px;
  }

  .comparison-header {
    font-size: 13px;
  }

  .month-comparison {
    padding: 10px;
  }

  .month-title {
    font-size: 13px;
  }

  .month-title i,
  .month-value i {
    font-size: 18px;
  }

  .month-value {
    font-size: 14px;
  }

  .media-label {
    font-size: 12px;
  }

  .media-value {
    font-size: 14px;
  }

  .top-expenses {
    padding: 15px;
  }

  .top-expenses-header {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .top-expenses-header i {
    font-size: 20px;
  }

  .top-expense-item {
    padding: 12px;
    gap: 10px;
    grid-template-columns: 28px 1fr auto auto;
  }

  .top-expense-rank {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .top-expense-description {
    font-size: 13px;
  }

  .top-expense-date {
    font-size: 11px;
  }

  .top-expense-value {
    font-size: 14px;
    padding-left: 10px;
  }

  .historico-header {
    margin-bottom: 15px;
  }

  .historico-header i {
    font-size: 20px;
  }

  .historico-header span {
    font-size: 14px;
  }

  .detail-item {
    padding: 12px;
    gap: 10px;
    grid-template-columns: auto 1fr auto auto;
  }

  .detail-date {
    font-size: 11px;
  }

  .detail-date i {
    font-size: 14px;
  }

  .detail-description {
    font-size: 13px;
  }

  .detail-value {
    font-size: 14px;
  }

  .delete-btn,
  .delete-btn-small {
    padding: 6px;
  }

  .delete-btn i,
  .delete-btn-small i {
    font-size: 16px;
  }

  .fab {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }

  .fab i {
    font-size: 24px;
  }

  .modal-content {
    padding: 22px;
  }

  .modal-content h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .modal-tipo {
    padding: 30px 20px;
  }

  .tipo-buttons {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 25px;
  }

  .tipo-button {
    padding: 30px 16px;
    font-size: 16px;
  }

  .tipo-button i {
    font-size: 44px;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-group label {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group select {
    padding: 14px;
    font-size: 16px;
  }

  .buttons {
    gap: 10px;
    margin-top: 25px;
  }

  button {
    padding: 12px 20px;
    font-size: 15px;
  }

  .success-message {
    top: 15px;
    right: 15px;
    padding: 14px 20px;
    font-size: 14px;
  }
}

/* Ajustes para landscape em iPhones */
@media screen and (max-height: 450px) and (orientation: landscape) {
  .modal-content {
    max-height: 85vh;
    margin: 10px auto;
  }

  .financial-summary {
    grid-template-columns: repeat(3, 1fr);
  }

  .summary-card {
    padding: 15px;
  }

  .summary-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .summary-value {
    font-size: 20px;
  }

  .fab {
    bottom: 15px;
    right: 15px;
  }
}

/* PWA Install Prompt */
.install-prompt {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #252640 0%, #1a1b29 100%);
  padding: 20px;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  animation: slideUp 0.4s ease-out;
  border-top: 2px solid rgba(76, 175, 80, 0.3);
}

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

.install-prompt-content {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.install-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  flex-shrink: 0;
}

.install-text {
  flex: 1;
  min-width: 0;
}

.install-text h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.install-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.install-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.install-btn {
  background: #4CAF50;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.install-btn:hover {
  background: #43A047;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
}

.install-btn i {
  font-size: 20px;
}

.install-close {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.install-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.install-close i {
  font-size: 20px;
}

/* PWA Mode adjustments */
body.pwa-mode {
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

body.pwa-mode .back-button {
  display: none;
}

/* Responsive Install Prompt */
@media screen and (max-width: 480px) {
  .install-prompt {
    padding: 15px;
  }

  .install-prompt-content {
    gap: 12px;
  }

  .install-icon {
    width: 50px;
    height: 50px;
  }

  .install-text h3 {
    font-size: 16px;
  }

  .install-text p {
    font-size: 13px;
  }

  .install-btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  .install-btn i {
    font-size: 18px;
  }

  .install-close {
    padding: 10px;
  }

  .install-close i {
    font-size: 18px;
  }
}

@media screen and (max-width: 360px) {
  .container {
    padding: 10px 12px;
    padding-bottom: 90px;
  }

  h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .back-button {
    width: 40px;
    height: 40px;
  }

  .back-button i {
    font-size: 20px;
  }

  .month-filter {
    padding: 10px 14px;
    gap: 10px;
  }

  .current-month {
    font-size: 15px;
    min-width: 140px;
  }

  .month-nav {
    padding: 8px;
    min-width: 40px;
    min-height: 40px;
  }

  .month-nav i {
    font-size: 20px;
  }

  .view-all-btn {
    padding: 8px;
    min-width: 40px;
    min-height: 40px;
  }

  .financial-summary {
    gap: 12px;
  }

  .summary-card {
    padding: 16px;
    gap: 14px;
  }

  .summary-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .summary-info h3 {
    font-size: 13px;
    margin-bottom: 5px;
  }

  .summary-value {
    font-size: 20px;
  }

  .tabs {
    padding: 6px;
    gap: 6px;
  }

  .tab {
    padding: 10px 14px;
    font-size: 14px;
    min-height: 40px;
  }

  .tab i {
    font-size: 18px;
  }

  .dashboard {
    gap: 12px;
  }

  .card {
    padding: 16px;
  }

  .card h3 {
    font-size: 16px;
    padding-right: 45px;
  }

  .valores-container {
    padding: 10px;
  }

  .valor {
    font-size: 16px;
  }

  .valor-label {
    font-size: 10px;
  }

  .valores-separator {
    width: 20px;
    height: 20px;
    margin: 0 4px;
  }

  .valores-separator i {
    font-size: 10px;
  }

  .category-icon {
    font-size: 26px;
    padding: 10px;
    top: 16px;
    right: 16px;
  }

  .fab {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

  .fab i {
    font-size: 22px;
  }

  .modal-content {
    padding: 20px;
    margin: 10px;
  }

  .modal-content h2 {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .form-group input,
  .form-group select {
    padding: 12px;
    font-size: 15px;
  }

  .buttons {
    gap: 8px;
    margin-top: 20px;
  }

  button {
    padding: 10px 16px;
    font-size: 14px;
  }

  .tipo-button {
    padding: 25px 16px;
    font-size: 15px;
  }

  .tipo-button i {
    font-size: 40px;
  }

  .install-prompt-content {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .install-text {
    width: 100%;
    text-align: center;
  }

  .install-buttons {
    width: 100%;
    justify-content: center;
  }
}