@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap";
/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --primary: #10b981;
  --primary-light: #34d399;
  --primary-dark: #059669;
  --primary-50: #ecfdf5;
  --primary-100: #d1fae5;
  --secondary: #8b5cf6;
  --secondary-light: #a78bfa;
  --secondary-dark: #7c3aed;
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --accent-dark: #d97706;
  --background: #0f172a;
  --background-secondary: #1e293b;
  --background-tertiary: #334155;
  --surface: #1e293b;
  --surface-hover: #334155;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;
  --border: #334155;
  --border-light: #475569;
  --shadow: 0 4px 6px -1px #0000004d, 0 2px 4px -2px #0003;
  --shadow-lg: 0 10px 15px -3px #0000004d, 0 4px 6px -4px #0003;
  --shadow-glow: 0 0 20px #10b9814d;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition-fast: .15s ease;
  --transition: .2s ease;
  --transition-slow: .3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--background);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
  line-height: 1.6;
}

.glass {
  -webkit-backdrop-filter: blur(12px);
  background: #1e293bcc;
  border: 1px solid #ffffff1a;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.app-layout {
  min-height: 100vh;
  display: flex;
}

.sidebar {
  background: var(--surface);
  border-right: 1px solid var(--border);
  z-index: 100;
  width: 280px;
  height: 100vh;
  padding: 24px;
  position: fixed;
  overflow-y: auto;
}

.main-content {
  flex: 1;
  min-height: 100vh;
  margin-left: 280px;
  padding: 32px;
}

.logo {
  border-bottom: 1px solid var(--border);
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  display: flex;
}

.logo-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius);
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 24px;
  display: flex;
}

.logo-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.25rem;
  font-weight: 700;
}

.nav-menu {
  flex-direction: column;
  gap: 4px;
  list-style: none;
  display: flex;
}

.nav-item {
  border-radius: var(--radius);
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: pointer;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.nav-item:hover {
  background: var(--surface-hover);
  color: var(--text-primary);
}

.nav-item.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.nav-item svg, .nav-item .icon {
  width: 20px;
  height: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  padding: 24px;
}

.card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow);
}

.card-header {
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  display: flex;
}

.card-title {
  color: var(--text-primary);
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
}

.card-title .icon {
  color: var(--primary);
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
  display: grid;
}

.stat-card {
  background: linear-gradient(135deg, var(--surface) 0%, var(--background-secondary) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.stat-card:before {
  content: "";
  background: linear-gradient(135deg, var(--primary), transparent);
  opacity: .1;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(30%, -30%);
}

.stat-icon {
  border-radius: var(--radius);
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  font-size: 24px;
  display: flex;
}

.stat-icon.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.stat-icon.secondary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.stat-icon.accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.stat-icon.info {
  background: linear-gradient(135deg, var(--info), #2563eb);
}

.stat-value {
  color: var(--text-primary);
  margin-bottom: 4px;
  font-size: 2rem;
  font-weight: 700;
}

.stat-label {
  color: var(--text-secondary);
  font-size: .875rem;
}

.stat-trend {
  border-radius: var(--radius-full);
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  padding: 4px 8px;
  font-size: .75rem;
  font-weight: 600;
  display: inline-flex;
}

.stat-trend.up {
  color: var(--success);
  background: #22c55e26;
}

.stat-trend.down {
  color: var(--error);
  background: #ef444426;
}

.btn {
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 14px #10b98166;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #10b98180;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--surface-hover);
  border-color: var(--primary);
}

.btn-ghost {
  color: var(--text-secondary);
  background: none;
}

.btn-ghost:hover {
  background: var(--surface-hover);
  color: var(--text-primary);
}

.btn-danger {
  background: linear-gradient(135deg, var(--error), #dc2626);
  color: #fff;
}

.btn-sm {
  padding: 8px 16px;
  font-size: .75rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-icon {
  border-radius: var(--radius);
  width: 40px;
  height: 40px;
  padding: 0;
}

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

.form-label {
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-size: .875rem;
  font-weight: 500;
  display: block;
}

.form-input, .form-select, .form-textarea {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  color: var(--text-primary);
  transition: var(--transition);
  padding: 14px 16px;
  font-size: .9375rem;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px #10b98126;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-hint {
  color: var(--text-muted);
  margin-top: 6px;
  font-size: .75rem;
}

.switch {
  cursor: pointer;
  width: 48px;
  height: 28px;
  position: relative;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  background: var(--background-tertiary);
  border-radius: var(--radius-full);
  transition: var(--transition);
  position: absolute;
  inset: 0;
}

.switch-slider:before {
  content: "";
  width: 22px;
  height: 22px;
  transition: var(--transition);
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
}

.switch input:checked + .switch-slider {
  background: var(--primary);
}

.switch input:checked + .switch-slider:before {
  transform: translateX(20px);
}

.table-container {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow-x: auto;
}

.table {
  border-collapse: collapse;
  width: 100%;
}

.table th, .table td {
  text-align: left;
  border-bottom: 1px solid var(--border);
  padding: 16px;
}

.table th {
  background: var(--background-secondary);
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-secondary);
  font-size: .75rem;
  font-weight: 600;
}

.table tr:hover td {
  background: var(--surface-hover);
}

.table tr:last-child td {
  border-bottom: none;
}

.badge {
  border-radius: var(--radius-full);
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: .75rem;
  font-weight: 600;
  display: inline-flex;
}

.badge-primary {
  color: var(--primary);
  background: #10b98126;
}

.badge-success {
  color: var(--success);
  background: #22c55e26;
}

.badge-warning {
  color: var(--warning);
  background: #f59e0b26;
}

.badge-error {
  color: var(--error);
  background: #ef444426;
}

.badge-info {
  color: var(--info);
  background: #3b82f626;
}

.modal-overlay {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 1000;
  background: #000000b3;
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: .2s fadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  animation: .3s slideUp;
  overflow-y: auto;
}

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

.modal-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.modal-close {
  border-radius: var(--radius);
  width: 36px;
  height: 36px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.modal-close:hover {
  background: var(--surface-hover);
  color: var(--text-primary);
}

.modal-body {
  padding: 24px;
}

.modal-footer {
  border-top: 1px solid var(--border);
  justify-content: flex-end;
  gap: 12px;
  padding: 24px;
  display: flex;
}

.toast-container {
  z-index: 1100;
  flex-direction: column;
  gap: 12px;
  display: flex;
  position: fixed;
  bottom: 24px;
  right: 24px;
}

.toast {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 300px;
  box-shadow: var(--shadow-lg);
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  animation: .3s slideInRight;
  display: flex;
}

.toast-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

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

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

.toast-warning .toast-icon {
  color: var(--warning);
}

.toast-content {
  flex: 1;
}

.toast-title {
  margin-bottom: 2px;
  font-weight: 600;
}

.toast-message {
  color: var(--text-secondary);
  font-size: .875rem;
}

.page-header {
  margin-bottom: 32px;
}

.page-title {
  margin-bottom: 8px;
  font-size: 1.75rem;
  font-weight: 700;
}

.page-subtitle {
  color: var(--text-secondary);
}

.payment-list {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.payment-item {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  align-items: center;
  gap: 16px;
  padding: 20px;
  display: flex;
}

.payment-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.payment-icon {
  border-radius: var(--radius);
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 24px;
  display: flex;
}

.payment-icon.elektrik {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.payment-icon.su {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

.payment-icon.dogalgaz {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.payment-icon.sgk {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
}

.payment-icon.vergi {
  background: linear-gradient(135deg, #f472b6, #ec4899);
}

.payment-icon.diger {
  background: linear-gradient(135deg, #94a3b8, #64748b);
}

.payment-details {
  flex: 1;
  min-width: 0;
}

.payment-title {
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 4px;
  font-weight: 600;
  overflow: hidden;
}

.payment-date {
  color: var(--text-secondary);
  font-size: .875rem;
}

.payment-amount {
  text-align: right;
}

.payment-amount-value {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
}

.payment-amount-pending {
  color: var(--text-muted);
  font-size: .875rem;
}

.payment-status {
  color: var(--text-muted);
  font-size: .75rem;
}

.payment-actions, .time-picker {
  gap: 8px;
  display: flex;
}

.time-picker input {
  width: 120px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

@media (max-width: 1024px) {
  .sidebar {
    transition: var(--transition);
    transform: translateX(-100%);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0;
    padding: 20px;
  }
}

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

  .page-title {
    font-size: 1.5rem;
  }

  .modal {
    max-width: calc(100% - 40px);
  }
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--border-light);
}

::selection {
  background: var(--primary);
  color: #fff;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--text-secondary);
}

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

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 8px;
}

.gap-4 {
  gap: 16px;
}

.mt-2 {
  margin-top: 8px;
}

.mt-4 {
  margin-top: 16px;
}

.mt-6 {
  margin-top: 24px;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-6 {
  margin-bottom: 24px;
}

.hidden {
  display: none;
}

/*# sourceMappingURL=src_app_globals_91e4631d.css.map*/