@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {

  --bg-gradient-start: #080b11;
  --bg-gradient-end: #121824;
  --panel-bg: rgba(18, 24, 38, 0.6);
  --panel-border: rgba(255, 255, 255, 0.07);

  --primary: hsl(263, 85%, 65%);
  --primary-glow: rgba(139, 92, 246, 0.3);
  --primary-hover: hsl(263, 90%, 72%);

  --credit: hsl(150, 84%, 57%);
  --credit-glow: rgba(52, 211, 153, 0.15);
  --credit-hover: hsl(150, 84%, 65%);

  --debit: hsl(351, 89%, 60%);
  --debit-glow: rgba(244, 63, 94, 0.15);
  --debit-hover: hsl(351, 89%, 68%);

  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #6b7280;

  --accent-blue: #3b82f6;
  --accent-yellow: #eab308;
  --accent-orange: #f97316;

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-glow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: radial-gradient(circle at 50% 0%, #1e1b4b 0%, var(--bg-gradient-start) 40%, var(--bg-gradient-end) 100%);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 2rem 1rem;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.ambient-glow-1 {
  position: absolute;
  top: -100px;
  left: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0) 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(40px);
}

.ambient-glow-2 {
  position: absolute;
  top: 300px;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, rgba(52, 211, 153, 0) 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(50px);
}

.app-container {
  width: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 1;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--panel-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
}

.brand-section h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-section p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.date-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.date-badge i {
  color: var(--primary);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.glass-card {
  background: var(--panel-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

.card-balance::before {
  background: linear-gradient(90deg, var(--primary), var(--accent-blue));
}
.card-budget::before {
  background: linear-gradient(90deg, var(--accent-yellow), var(--accent-orange));
}
.card-insights::before {
  background: linear-gradient(90deg, var(--credit), var(--primary));
}

.card-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-title i {
  font-size: 1.1rem;
}

.balance-amount {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
}

.balance-stats {
  display: flex;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

.stat-item {
  flex: 1;
}

.stat-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.25rem;
}

.stat-amount {
  font-size: 1.15rem;
  font-weight: 600;
}

.stat-amount.credit {
  color: var(--credit);
  text-shadow: 0 0 10px rgba(52, 211, 153, 0.2);
}

.stat-amount.debit {
  color: var(--debit);
  text-shadow: 0 0 10px rgba(244, 63, 94, 0.2);
}

.budget-status-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.budget-amount {
  font-size: 1.75rem;
  font-weight: 700;
}

.budget-limit {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.progress-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-yellow), var(--accent-orange));
  border-radius: 10px;
  transition: width 0.6s cubic-bezier(0.1, 0.8, 0.25, 1);
  box-shadow: 0 0 8px rgba(234, 179, 8, 0.4);
}

.progress-bar.warning {
  background: linear-gradient(90deg, var(--accent-orange), var(--debit));
  box-shadow: 0 0 8px rgba(244, 63, 94, 0.4);
}

.budget-footer {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
}

.edit-budget-btn {
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: var(--transition);
}

.edit-budget-btn:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.insights-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.no-insights {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 1.5rem 0;
  font-style: italic;
}

.category-bar-wrapper {
  margin-top: 0.5rem;
}

.category-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.category-bar-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

.category-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--primary);
  border-radius: 4px;
  transition: width 0.5s ease-out;
}

.top-item-highlight {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-item-highlight span {
  font-size: 0.8rem;
  font-weight: 500;
  background: rgba(244, 63, 94, 0.15);
  color: var(--debit);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px solid rgba(244, 63, 94, 0.2);
}

.workspace-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .workspace-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 1rem;
  color: var(--text-dark);
  font-size: 0.95rem;
}

input, select, textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  padding-left: 2.5rem;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

textarea {
  padding-left: 1rem;
  resize: vertical;
  min-height: 80px;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.15);
}

select {
  appearance: none;
  cursor: pointer;
}

.select-wrapper::after {
  content: '▼';
  font-size: 0.7rem;
  position: absolute;
  right: 1rem;
  pointer-events: none;
  color: var(--text-muted);
}

.transaction-type-toggle {
  display: flex;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.25rem;
  margin-bottom: 1.25rem;
}

.type-toggle-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.6rem;
  color: var(--text-muted);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: calc(var(--radius-sm) - 2px);
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.type-toggle-btn.active.credit {
  background: var(--credit);
  color: #0c0f18;
  box-shadow: 0 4px 12px var(--credit-glow);
}

.type-toggle-btn.active.debit {
  background: var(--debit);
  color: #0c0f18;
  box-shadow: 0 4px 12px var(--debit-glow);
}

.btn-primary {
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--primary-glow);
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, #8b5cf6 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.history-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.history-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.action-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.search-box {
  flex: 1.5;
  min-width: 200px;
}

.filter-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 0.2rem;
}

.filter-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.4rem 0.85rem;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: calc(var(--radius-sm) - 4px);
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab-btn.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-export {
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-blue);
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-export:hover {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  transform: translateY(-1px);
}

.transaction-list-container {
  max-height: 520px;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.empty-state i {
  font-size: 3rem;
  color: var(--text-dark);
}

.transaction-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  margin-bottom: 0.75rem;
  transition: var(--transition);
  animation: slideIn 0.35s ease-out forwards;
}

.transaction-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

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

.transaction-icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.transaction-icon-box.credit {
  background: rgba(52, 211, 153, 0.1);
  color: var(--credit);
  border: 1px solid rgba(52, 211, 153, 0.2);
}

.transaction-icon-box.debit {
  background: rgba(244, 63, 94, 0.1);
  color: var(--debit);
  border: 1px solid rgba(244, 63, 94, 0.2);
}

.transaction-details {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.transaction-details h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 0.2rem;
}

.transaction-meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.transaction-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-weight: 500;
  text-transform: capitalize;
}

.transaction-amount-col {
  flex-shrink: 0;
  text-align: right;
  padding-left: 0.5rem;
}

.transaction-amount-val {
  font-size: 1.1rem;
  font-weight: 700;
}

.transaction-amount-val.credit {
  color: var(--credit);
}

.transaction-amount-val.debit {
  color: var(--debit);
}

.transaction-delete-btn {
  background: transparent;
  border: none;
  color: var(--text-dark);
  font-size: 1.15rem;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 6px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.transaction-delete-btn:hover {
  color: var(--debit);
  background: rgba(244, 63, 94, 0.1);
}

.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  background: rgba(18, 24, 38, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  color: var(--text-main);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 250px;
  max-width: 380px;
  pointer-events: auto;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
  transform: translateX(0);
}

.toast.success {
  border-left: 4px solid var(--credit);
}

.toast.success i {
  color: var(--credit);
}

.toast.error {
  border-left: 4px solid var(--debit);
}

.toast.error i {
  color: var(--debit);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--bg-gradient-end);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  box-shadow: var(--shadow-glow);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-header {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn-secondary {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  color: var(--text-main);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.developer-footer {
  margin-top: 4rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  animation: fadeInFooter 1s ease-out;
}

.footer-divider {
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  margin-bottom: 2rem;
}

.footer-content {
  background: rgba(18, 24, 38, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
}

.footer-content:hover {
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.08);
  transform: translateY(-2px);
}

.crafted-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

.developer-name {
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
}

.heart-pulse {
  color: #ef4444;
  animation: pulse 1.4s infinite;
  display: inline-block;
  margin: 0 0.2rem;
}

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

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  text-decoration: none;
}

.social-icon.linkedin:hover {
  background: rgba(10, 102, 194, 0.15);
  color: #0a66c2;
  border-color: rgba(10, 102, 194, 0.4);
  box-shadow: 0 0 15px rgba(10, 102, 194, 0.3);
  transform: translateY(-4px) scale(1.1);
}

.social-icon.github:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  transform: translateY(-4px) scale(1.1);
}

.explore-text {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.explore-text a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.explore-text a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

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

@media (max-width: 1024px) {
  body {
    padding: 1.5rem 1rem;
  }

  .dashboard-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .workspace-grid {
    gap: 1.25rem;
  }

  .glass-card {
    padding: 1.25rem;
  }

  .balance-amount {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .workspace-grid {
    grid-template-columns: 1fr;
  }

  header {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .brand-section h1 {
    font-size: 1.75rem;
  }
}

@media (max-width: 600px) {
  body {
    padding: 1rem 0.5rem;
  }

  header {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.25rem 1rem;
    text-align: center;
  }

  .brand-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .brand-section h1 {
    font-size: 1.5rem;
  }

  .brand-section p {
    font-size: 0.8rem;
  }

  .date-badge {
    align-self: center;
    justify-content: center;
    width: 100%;
    font-size: 0.85rem;
  }

  .card-title {
    justify-content: center;
    gap: 0.5rem;
  }

  .balance-amount {
    font-size: 1.85rem;
    text-align: center;
  }

  .balance-stats {
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
  }

  .stat-amount {
    font-size: 1.05rem;
  }

  .budget-status-row {
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .budget-footer {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
  }

  .top-item-highlight {
    justify-content: center;
  }

  .dashboard-grid {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .glass-card {
    padding: 1.15rem 1rem;
  }

  .transaction-card {
    padding: 0.75rem 0.85rem;
    gap: 0.75rem;
  }

  .transaction-icon-box {
    display: none; 
  }

  .transaction-details h4 {
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
  }

  .transaction-meta {
    font-size: 0.75rem;
    gap: 0.4rem;
    flex-wrap: wrap;
  }

  .transaction-amount-val {
    font-size: 0.95rem;
  }

  .transaction-delete-btn {
    font-size: 1.05rem;
    padding: 0.35rem;
  }

  .action-row {
    flex-direction: column;
    align-items: stretch;
  }

  .search-box {
    width: 100%;
  }

  .filter-tabs {
    width: 100%;
    justify-content: stretch;
  }

  .filter-tab-btn {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.75rem;
  }

  .btn-export {
    width: 100%;
    justify-content: center;
  }

  .modal {
    padding: 1.5rem 1.25rem;
  }

  .toast-container {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
  }

  .toast {
    min-width: 0;
    width: 100%;
  }

  .developer-footer {
    margin-top: 3rem;
    padding: 0 0.5rem;
  }
  .footer-content {
    padding: 1.5rem 1.25rem;
  }
  .crafted-text {
    font-size: 1rem;
  }
  .social-icon {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }
}
