/* src/styles.scss */
.header-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
  position: relative;
}
.header-row h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}
.back-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--ios-text);
  text-decoration: none;
  transition: background-color 0.2s;
  position: absolute;
  left: 0;
}
.back-btn-icon .material-icons {
  font-size: 24px;
}
.back-btn-icon:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.header-section {
  text-align: center;
  margin-bottom: 24px;
  padding: 0 16px;
}
.header-section .subtitle {
  color: var(--ios-text-secondary);
  font-size: 15px;
  margin: 0;
}
.ios-list-group {
  margin-bottom: 35px;
}
.ios-list-group .group-header {
  padding: 0 16px 8px;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--ios-text-secondary);
  font-weight: 400;
}
.ios-list-group .group-footer {
  padding: 0 16px;
  font-size: 13px;
  color: var(--ios-text-secondary);
  margin-top: 8px;
}
.ios-card {
  background: var(--ios-card-bg);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.ios-card.inset {
  margin: 0 16px;
}
.ios-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--ios-card-bg);
  border-bottom: 2px solid var(--ios-separator);
  min-height: 44px;
  box-sizing: border-box;
  text-decoration: none;
  color: var(--ios-text);
  cursor: pointer;
}
.ios-row:last-child {
  border-bottom: none;
}
.ios-row:active {
  background-color: var(--ios-highlight);
}
.ios-row.no-action {
  cursor: default;
}
.ios-row.no-action:active {
  background-color: var(--ios-card-bg);
}
.ios-row-content {
  display: flex;
  flex-direction: column;
}
.ios-row-content .row-title {
  font-size: 16px;
  color: var(--ios-text);
}
.ios-row-content .row-subtitle {
  font-size: 13px;
  color: var(--ios-text-secondary);
  margin-top: 2px;
}
.ios-chevron {
  color: #c7c7cc;
  font-size: 20px;
}
.ios-input-group {
  display: flex;
  align-items: center;
  padding: 15px;
  background: white;
  border-bottom: 1px solid var(--ios-separator);
  flex-wrap: wrap;
}
.ios-input-group:last-child {
  border-bottom: none;
}
.ios-input-group label {
  width: 120px;
  font-size: 17px;
}
.ios-input-group input,
.ios-input-group select {
  flex: 1;
  border: none;
  font-size: 17px;
  outline: none;
  padding: 10px;
  background: #f9f9f9;
  border-radius: 8px;
  color: var(--ios-text);
  font-size: 16px;
}
.ios-input-group input[disabled],
.ios-input-group select[disabled] {
  color: var(--ios-text-secondary);
  background: transparent;
}
.ios-input-group {
}
.ios-input-group.has-error input,
.ios-input-group.has-error select {
  color: var(--ios-red);
}
.ios-input-group.has-error label {
  color: var(--ios-red);
}
.error-message {
  width: 100%;
  color: var(--ios-red);
  font-size: 13px;
  padding: 4px 0 0 120px;
  margin-top: 5px;
}
.ios-select {
  flex: 1;
  border: none;
  outline: none;
  appearance: none;
  padding: 10px;
  background: #f9f9f9;
  border-radius: 8px;
  color: var(--ios-text);
  font-size: 16px;
}
.ios-btn {
  background: var(--ios-blue);
  color: white;
  border: none;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--radius-input);
  cursor: pointer;
}
.ios-btn:disabled {
  opacity: 0.5;
}
.ios-btn.secondary {
  background: transparent;
  color: var(--ios-blue);
}
.ios-btn.destructive {
  background: transparent;
  color: var(--ios-red);
}
.ios-row-radio {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ios-row-radio .radio-label {
  display: flex;
  align-items: center;
  font-size: 17px;
  cursor: pointer;
}
.ios-row-radio .radio-label input {
  margin-right: 12px;
  accent-color: var(--ios-blue);
  width: 20px;
  height: 20px;
}
.ios-checkbox-row {
  padding: 16px;
}
.ios-checkbox-row .checkbox-container {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}
.ios-checkbox-row .checkbox-container input {
  margin-top: 4px;
  margin-right: 12px;
  accent-color: var(--ios-blue);
  width: 20px;
  height: 20px;
}
.ios-checkbox-row .checkbox-container .text {
  font-size: 15px;
  line-height: 1.4;
}
.ios-switch {
  width: 51px;
  height: 31px;
  position: relative;
  display: inline-block;
}
.ios-switch input {
  display: none;
}
.ios-switch-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 34px;
  background-color: #e9e9ea;
  transition: 0.4s;
}
.ios-switch-slider:before {
  position: absolute;
  content: "";
  height: 27px;
  width: 27px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
input:checked + .ios-switch-slider {
  background-color: var(--ios-green);
}
input:checked + .ios-switch-slider:before {
  transform: translateX(20px);
}
:root {
  --ios-bg: #f2f2f7;
  --ios-card-bg: #ffffff;
  --ios-text: #3b3b3b;
  --ios-text-secondary: #8e8e93;
  --ios-blue: #779fff;
  --ios-red: #f4847e;
  --ios-green: #75b585;
  --ios-separator: #f2f2f7;
  --ios-highlight: #d1d1d6;
  --font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  --radius-card: 10px;
  --radius-input: 25px;
}
body {
  margin: 0;
  font-family: var(--font-family);
  background-color: var(--ios-bg);
  color: var(--ios-text);
  -webkit-font-smoothing: antialiased;
}
.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 300,
    "GRAD" 0,
    "opsz" 24;
}

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