@charset "UTF-8";

/* src/styles.scss */
:root {
  --color-primary: #fde100;
  --color-primary-light: #ffe84d;
  --color-primary-dark: #c9b800;
  --color-text-primary: #1c1c1e;
  --color-text-secondary: #8e8e93;
  --color-text-tertiary: #aeaeb2;
  --color-text-placeholder: #c7c7cc;
  --color-bg-primary: #f2f2f7;
  --color-bg-secondary: #e5e5ea;
  --color-bg-tertiary: #f8f9fa;
  --color-bg-quaternary: #e9ecef;
  --color-bg-white: #ffffff;
  --color-bg-active: #f5f5f5;
  --color-bg-disabled: #fafafa;
  --color-border-light: #f0f0f0;
  --color-border: #e5e5ea;
  --color-border-dark: #d1d1d6;
  --color-border-darkest: #c6c6c8;
  --color-error-bg: #ffebee;
  --color-error-text: #c62828;
  --color-success-bg: #e8f5e9;
  --color-success-text: #2e7d32;
  --color-warning-bg: #fff3e0;
  --color-warning-text: #ef6c00;
  --gradient-background:
    linear-gradient(
      180deg,
      #f2f2f7 0%,
      #e5e5ea 100%);
  --gradient-card:
    linear-gradient(
      135deg,
      #f8f9fa 0%,
      #e9ecef 100%);
  --gradient-card-front:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f8f9fa 100%);
  --gradient-card-back:
    linear-gradient(
      135deg,
      #e3f2fd 0%,
      #bbdefb 100%);
  --glass-light-bg: rgba(255, 255, 255, 0.85);
  --glass-medium-bg: rgba(255, 255, 255, 0.95);
}
@media (orientation: landscape) and (max-height: 500px) {
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: #1c1c1e;
    z-index: 99999;
  }
  body::after {
    content: "\21ba   Bitte drehe dein Ger\e4t";
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.2px;
    z-index: 99999;
  }
}
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
body {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Text",
    "SF Pro Display",
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  margin: 0;
  padding: 0;
  padding-top: env(safe-area-inset-top);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1 {
  font-size: 34px;
  font-weight: 700;
  margin: 16px 16px 8px;
  letter-spacing: -0.4px;
  color: var(--color-text-primary);
}
h2 {
  font-size: 34px;
  font-weight: 700;
  margin: 16px 16px 8px;
  letter-spacing: -0.4px;
  color: var(--color-text-primary);
}
h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 12px 16px;
  letter-spacing: -0.3px;
  color: var(--color-text-primary);
}
button {
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  min-height: 45px;
  border-radius: 100px;
}
.ios-list {
  background: var(--color-bg-white);
  border-radius: 12px;
  margin: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.ios-list-item {
  padding: 14px 16px;
  border-bottom: 0.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 48px;
}
.ios-list-item:last-child {
  border-bottom: none;
}
.ios-list-item:active {
  background-color: var(--color-bg-active);
}
body.modal-open .ios-container {
  overflow: hidden;
  touch-action: none;
}
* {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
input {
  width: 100%;
  border: 1px solid var(--color-border-dark);
  border-radius: 4px;
  height: 40px;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) {
    --color-text-primary: #f2f2f7;
    --color-text-secondary: #8e8ea0;
    --color-text-tertiary: #56566a;
    --color-text-placeholder: #6b7280;
    --color-bg-primary: #20242a;
    --color-bg-secondary: #282d35;
    --color-bg-tertiary: #30353f;
    --color-bg-quaternary: #30353f;
    --color-bg-white: #282d35;
    --color-bg-active: #363c47;
    --color-bg-disabled: #20242a;
    --color-border-light: #282d35;
    --color-border: #30353f;
    --color-border-dark: #3c4251;
    --color-border-darkest: #484e60;
    --color-error-bg: #2d1520;
    --color-error-text: #ff6b6b;
    --color-success-bg: #0e2e18;
    --color-success-text: #4cd964;
    --color-warning-bg: #2a1e06;
    --color-warning-text: #ffb340;
    --gradient-background:
      linear-gradient(
        180deg,
        #20242a 0%,
        #282d35 100%);
    --gradient-card:
      linear-gradient(
        135deg,
        #282d35 0%,
        #30353f 100%);
    --gradient-card-front:
      linear-gradient(
        135deg,
        #282d35 0%,
        #30353f 100%);
    --gradient-card-back:
      linear-gradient(
        135deg,
        #1a2240 0%,
        #1e2c54 100%);
    --glass-light-bg: rgba(32, 36, 42, 0.92);
    --glass-medium-bg: rgba(40, 45, 53, 0.96);
  }
}
:root[data-theme=dark] {
  --color-text-primary: #f2f2f7;
  --color-text-secondary: #8e8ea0;
  --color-text-tertiary: #56566a;
  --color-text-placeholder: #6b7280;
  --color-bg-primary: #20242a;
  --color-bg-secondary: #282d35;
  --color-bg-tertiary: #30353f;
  --color-bg-quaternary: #30353f;
  --color-bg-white: #282d35;
  --color-bg-active: #363c47;
  --color-bg-disabled: #20242a;
  --color-border-light: #282d35;
  --color-border: #30353f;
  --color-border-dark: #3c4251;
  --color-border-darkest: #484e60;
  --color-error-bg: #2d1520;
  --color-error-text: #ff6b6b;
  --color-success-bg: #0e2e18;
  --color-success-text: #4cd964;
  --color-warning-bg: #2a1e06;
  --color-warning-text: #ffb340;
  --gradient-background:
    linear-gradient(
      180deg,
      #20242a 0%,
      #282d35 100%);
  --gradient-card:
    linear-gradient(
      135deg,
      #282d35 0%,
      #30353f 100%);
  --gradient-card-front:
    linear-gradient(
      135deg,
      #282d35 0%,
      #30353f 100%);
  --gradient-card-back:
    linear-gradient(
      135deg,
      #1a2240 0%,
      #1e2c54 100%);
  --glass-light-bg: rgba(32, 36, 42, 0.92);
  --glass-medium-bg: rgba(40, 45, 53, 0.96);
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
