@charset "UTF-8";
input[type=text],
input[type=email],
input[type=tel],
input[type=url] {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 14px;
  background-color: #FFFFFF;
  border: 1px solid #D2D2D7;
  border-radius: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #1D1D1F;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=url]::placeholder {
  color: #86868B;
  opacity: 1;
}
input[type=text]:hover:not(:disabled):not(:focus),
input[type=email]:hover:not(:disabled):not(:focus),
input[type=tel]:hover:not(:disabled):not(:focus),
input[type=url]:hover:not(:disabled):not(:focus) {
  border-color: #86868B;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus {
  border-color: #0866FF;
  box-shadow: 0 0 0 3px rgba(8, 102, 255, 0.2);
}
input[type=text]:disabled,
input[type=email]:disabled,
input[type=tel]:disabled,
input[type=url]:disabled {
  background-color: #FAFAFC;
  color: #86868B;
  cursor: not-allowed;
  opacity: 0.56;
}
input[type=text]:read-only,
input[type=email]:read-only,
input[type=tel]:read-only,
input[type=url]:read-only {
  background-color: #F5F5F7;
  cursor: default;
}
input[type=text]:read-only:focus,
input[type=email]:read-only:focus,
input[type=tel]:read-only:focus,
input[type=url]:read-only:focus {
  border-color: #D2D2D7;
  box-shadow: none;
}

input[type=password] {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 14px;
  background-color: #FFFFFF;
  border: 1px solid #D2D2D7;
  border-radius: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #1D1D1F;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type=password]::placeholder {
  color: #86868B;
  opacity: 1;
}
input[type=password]:hover:not(:disabled):not(:focus) {
  border-color: #86868B;
}
input[type=password]:focus {
  border-color: #0866FF;
  box-shadow: 0 0 0 3px rgba(8, 102, 255, 0.2);
}
input[type=password]:disabled {
  background-color: #FAFAFC;
  color: #86868B;
  cursor: not-allowed;
  opacity: 0.56;
}
input[type=password]:read-only {
  background-color: #F5F5F7;
  cursor: default;
}
input[type=password]:read-only:focus {
  border-color: #D2D2D7;
  box-shadow: none;
}
input[type=password] {
  letter-spacing: 0.08em;
}
input[type=password]::-ms-reveal, input[type=password]::-ms-clear {
  display: none;
}

input[type=number] {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 14px;
  background-color: #FFFFFF;
  border: 1px solid #D2D2D7;
  border-radius: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #1D1D1F;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type=number]::placeholder {
  color: #86868B;
  opacity: 1;
}
input[type=number]:hover:not(:disabled):not(:focus) {
  border-color: #86868B;
}
input[type=number]:focus {
  border-color: #0866FF;
  box-shadow: 0 0 0 3px rgba(8, 102, 255, 0.2);
}
input[type=number]:disabled {
  background-color: #FAFAFC;
  color: #86868B;
  cursor: not-allowed;
  opacity: 0.56;
}
input[type=number]:read-only {
  background-color: #F5F5F7;
  cursor: default;
}
input[type=number]:read-only:focus {
  border-color: #D2D2D7;
  box-shadow: none;
}
input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=search] {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 14px;
  background-color: #FFFFFF;
  border: 1px solid #D2D2D7;
  border-radius: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #1D1D1F;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type=search]::placeholder {
  color: #86868B;
  opacity: 1;
}
input[type=search]:hover:not(:disabled):not(:focus) {
  border-color: #86868B;
}
input[type=search]:focus {
  border-color: #0866FF;
  box-shadow: 0 0 0 3px rgba(8, 102, 255, 0.2);
}
input[type=search]:disabled {
  background-color: #FAFAFC;
  color: #86868B;
  cursor: not-allowed;
  opacity: 0.56;
}
input[type=search]:read-only {
  background-color: #F5F5F7;
  cursor: default;
}
input[type=search]:read-only:focus {
  border-color: #D2D2D7;
  box-shadow: none;
}
input[type=search] {
  background-color: #F5F5F7;
  border-color: transparent;
}
input[type=search]:focus {
  background-color: #FFFFFF;
  border-color: #0866FF;
  box-shadow: 0 0 0 3px rgba(8, 102, 255, 0.2);
}
input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input[type=date],
input[type=datetime-local],
input[type=month],
input[type=time],
input[type=week] {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 14px;
  background-color: #FFFFFF;
  border: 1px solid #D2D2D7;
  border-radius: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #1D1D1F;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type=date]::placeholder,
input[type=datetime-local]::placeholder,
input[type=month]::placeholder,
input[type=time]::placeholder,
input[type=week]::placeholder {
  color: #86868B;
  opacity: 1;
}
input[type=date]:hover:not(:disabled):not(:focus),
input[type=datetime-local]:hover:not(:disabled):not(:focus),
input[type=month]:hover:not(:disabled):not(:focus),
input[type=time]:hover:not(:disabled):not(:focus),
input[type=week]:hover:not(:disabled):not(:focus) {
  border-color: #86868B;
}
input[type=date]:focus,
input[type=datetime-local]:focus,
input[type=month]:focus,
input[type=time]:focus,
input[type=week]:focus {
  border-color: #0866FF;
  box-shadow: 0 0 0 3px rgba(8, 102, 255, 0.2);
}
input[type=date]:disabled,
input[type=datetime-local]:disabled,
input[type=month]:disabled,
input[type=time]:disabled,
input[type=week]:disabled {
  background-color: #FAFAFC;
  color: #86868B;
  cursor: not-allowed;
  opacity: 0.56;
}
input[type=date]:read-only,
input[type=datetime-local]:read-only,
input[type=month]:read-only,
input[type=time]:read-only,
input[type=week]:read-only {
  background-color: #F5F5F7;
  cursor: default;
}
input[type=date]:read-only:focus,
input[type=datetime-local]:read-only:focus,
input[type=month]:read-only:focus,
input[type=time]:read-only:focus,
input[type=week]:read-only:focus {
  border-color: #D2D2D7;
  box-shadow: none;
}
input[type=date],
input[type=datetime-local],
input[type=month],
input[type=time],
input[type=week] {
  padding-right: 12px;
}
input[type=date]::-webkit-date-and-time-value,
input[type=datetime-local]::-webkit-date-and-time-value,
input[type=month]::-webkit-date-and-time-value,
input[type=time]::-webkit-date-and-time-value,
input[type=week]::-webkit-date-and-time-value {
  text-align: left;
}
input[type=date]::-webkit-calendar-picker-indicator,
input[type=datetime-local]::-webkit-calendar-picker-indicator,
input[type=month]::-webkit-calendar-picker-indicator,
input[type=time]::-webkit-calendar-picker-indicator,
input[type=week]::-webkit-calendar-picker-indicator {
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
input[type=date]::-webkit-calendar-picker-indicator:hover,
input[type=datetime-local]::-webkit-calendar-picker-indicator:hover,
input[type=month]::-webkit-calendar-picker-indicator:hover,
input[type=time]::-webkit-calendar-picker-indicator:hover,
input[type=week]::-webkit-calendar-picker-indicator:hover {
  opacity: 0.8;
}

input[type=color] {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 14px;
  background-color: #FFFFFF;
  border: 1px solid #D2D2D7;
  border-radius: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #1D1D1F;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type=color]::placeholder {
  color: #86868B;
  opacity: 1;
}
input[type=color]:hover:not(:disabled):not(:focus) {
  border-color: #86868B;
}
input[type=color]:focus {
  border-color: #0866FF;
  box-shadow: 0 0 0 3px rgba(8, 102, 255, 0.2);
}
input[type=color]:disabled {
  background-color: #FAFAFC;
  color: #86868B;
  cursor: not-allowed;
  opacity: 0.56;
}
input[type=color]:read-only {
  background-color: #F5F5F7;
  cursor: default;
}
input[type=color]:read-only:focus {
  border-color: #D2D2D7;
  box-shadow: none;
}
input[type=color] {
  width: 40px;
  padding: 4px;
  cursor: pointer;
  overflow: hidden;
}
input[type=color]::-webkit-color-swatch-wrapper {
  padding: 0;
}
input[type=color]::-webkit-color-swatch {
  border: none;
  border-radius: 8px;
}
input[type=color]::-moz-color-swatch {
  border: none;
  border-radius: 8px;
}

input[type=file] {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 14px;
  background-color: #FFFFFF;
  border: 1px solid #D2D2D7;
  border-radius: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #1D1D1F;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type=file]::placeholder {
  color: #86868B;
  opacity: 1;
}
input[type=file]:hover:not(:disabled):not(:focus) {
  border-color: #86868B;
}
input[type=file]:focus {
  border-color: #0866FF;
  box-shadow: 0 0 0 3px rgba(8, 102, 255, 0.2);
}
input[type=file]:disabled {
  background-color: #FAFAFC;
  color: #86868B;
  cursor: not-allowed;
  opacity: 0.56;
}
input[type=file]:read-only {
  background-color: #F5F5F7;
  cursor: default;
}
input[type=file]:read-only:focus {
  border-color: #D2D2D7;
  box-shadow: none;
}
input[type=file] {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #6E6E73;
  background: #fff !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
}
input[type=file]::file-selector-button {
  height: 26px;
  padding: 0 12px;
  margin-right: 10px;
  background-color: #FFFFFF;
  border: 1px solid #D2D2D7;
  border-radius: 980px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #1D1D1F;
  cursor: pointer;
  transition: all 0.2s ease;
}
input[type=file]::file-selector-button:hover {
  background-color: #F5F5F7;
  border-color: #86868B;
}

input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: #E5E5EA;
  border-radius: 2px;
  border: none;
  outline: none;
  cursor: pointer;
  margin: 18px 0;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 0.5px 2px rgba(0, 0, 0, 0.2), 0 0 0 0.5px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: box-shadow 0.15s ease;
}
input[type=range]::-webkit-slider-thumb:hover {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25), 0 0 0 0.5px rgba(0, 0, 0, 0.08);
}
input[type=range]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: #FFFFFF;
  border-radius: 50%;
  border: none;
  box-shadow: 0 0.5px 2px rgba(0, 0, 0, 0.2), 0 0 0 0.5px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}
input[type=range]::-moz-range-track {
  background: #E5E5EA;
  height: 4px;
  border-radius: 2px;
  border: none;
}
input[type=range]:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px rgba(8, 102, 255, 0.2), 0 0.5px 2px rgba(0, 0, 0, 0.2);
}
input[type=range]:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid #D2D2D7;
  border-radius: 6px;
  background-color: #FFFFFF;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  vertical-align: middle;
}
input[type=checkbox]:hover {
  border-color: #86868B;
}
input[type=checkbox]:checked {
  background-color: #0866FF;
  border-color: #0866FF;
}
input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
input[type=checkbox]:focus-visible {
  box-shadow: 0 0 0 3px rgba(8, 102, 255, 0.2);
}
input[type=checkbox]:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid #D2D2D7;
  border-radius: 50%;
  background-color: #FFFFFF;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  vertical-align: middle;
}
input[type=radio]:hover {
  border-color: #86868B;
}
input[type=radio]:checked {
  border-color: #0866FF;
  border-width: 6px;
}
input[type=radio]:focus-visible {
  box-shadow: 0 0 0 3px rgba(8, 102, 255, 0.2);
}
input[type=radio]:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

textarea {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 14px;
  background-color: #FFFFFF;
  border: 1px solid #D2D2D7;
  border-radius: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #1D1D1F;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
textarea::placeholder {
  color: #86868B;
  opacity: 1;
}
textarea:hover:not(:disabled):not(:focus) {
  border-color: #86868B;
}
textarea:focus {
  border-color: #0866FF;
  box-shadow: 0 0 0 3px rgba(8, 102, 255, 0.2);
}
textarea:disabled {
  background-color: #FAFAFC;
  color: #86868B;
  cursor: not-allowed;
  opacity: 0.56;
}
textarea:read-only {
  background-color: #F5F5F7;
  cursor: default;
}
textarea:read-only:focus {
  border-color: #D2D2D7;
  box-shadow: none;
}
textarea {
  height: auto;
  min-height: 100px;
  padding: 10px 14px;
  resize: vertical;
  line-height: 1.47;
}

select {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 14px;
  background-color: #FFFFFF;
  border: 1px solid #D2D2D7;
  border-radius: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #1D1D1F;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::placeholder {
  color: #86868B;
  opacity: 1;
}
select:hover:not(:disabled):not(:focus) {
  border-color: #86868B;
}
select:focus {
  border-color: #0866FF;
  box-shadow: 0 0 0 3px rgba(8, 102, 255, 0.2);
}
select:disabled {
  background-color: #FAFAFC;
  color: #86868B;
  cursor: not-allowed;
  opacity: 0.56;
}
select:read-only {
  background-color: #F5F5F7;
  cursor: default;
}
select:read-only:focus {
  border-color: #D2D2D7;
  box-shadow: none;
}
select {
  padding-right: 40px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2386868B'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
}
select:invalid {
  color: #86868B;
}

label {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #1D1D1F;
  margin-bottom: 6px;
  -webkit-font-smoothing: antialiased;
}

.input--error {
  border-color: #FF3B30 !important;
  background-color: rgba(255, 59, 48, 0.06);
}
.input--error:focus {
  box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.2) !important;
  border-color: #FF3B30 !important;
}

.input--success {
  border-color: #34C759 !important;
}
.input--success:focus {
  box-shadow: 0 0 0 3px rgba(52, 199, 89, 0.2) !important;
  border-color: #34C759 !important;
}

.input--warning {
  border-color: #FF9500 !important;
}
.input--warning:focus {
  box-shadow: 0 0 0 3px rgba(255, 149, 0, 0.2) !important;
  border-color: #FF9500 !important;
}

.input-helper, .input-success-text, .input-error-text {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #6E6E73;
  margin-top: 5px;
  letter-spacing: -0.01em;
}

.input-error-text {
  color: #FF3B30;
}

.input-success-text {
  color: #34C759;
}

.input-sm {
  height: 32px !important;
  padding: 0 10px !important;
  font-size: 13px !important;
  border-radius: 8px !important;
}

.input-lg {
  height: 48px !important;
  padding: 0 18px !important;
  font-size: 17px !important;
  border-radius: 14px !important;
}

:root {
  --btn-radius: 10px;
  --btn-border: #d4d4d4;
  --btn-bg: #ffffff;
  --btn-bg-hover: #f5f5f5;
  --btn-text: #333;
  --btn-height: 44px;
  --btn-padding: 0 16px;
  --badge-bg: #c8f76e;
  --badge-text: #1a1a1a;
}

/* ========================================
     CORE: .ui-btn-group
     ======================================== */
.ui-btn-group {
  display: inline-flex;
}

.ui-btn-group .ui-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: var(--btn-height);
  padding: var(--btn-padding);
  background: var(--btn-bg);
  color: var(--btn-text);
  border: 1px solid var(--btn-border);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease;
  position: relative;
  /* Default: keine Rundung */
  border-radius: 0;
}

.ui-btn-group .ui-btn:hover {
  background: var(--btn-bg-hover);
}

.ui-btn-group .ui-btn:active {
  background: #ebebeb;
}

/* ── Border-Collapse: doppelte Borders vermeiden ── */
.ui-btn-group .ui-btn + .ui-btn {
  margin-left: -1px;
}

/* Hover-Button soll über Nachbarn liegen (damit Border sichtbar bleibt) */
.ui-btn-group .ui-btn:hover {
  z-index: 1;
}

/* ── 1 Button (only-child) → komplett rund ── */
.ui-btn-group .ui-btn:only-child {
  border-radius: var(--btn-radius);
}

/* ── Erster Button → links rund ── */
.ui-btn-group .ui-btn:first-child:not(:only-child) {
  border-radius: var(--btn-radius) 0 0 var(--btn-radius);
}

/* ── Letzter Button → rechts rund ── */
.ui-btn-group .ui-btn:last-child:not(:only-child) {
  border-radius: 0 var(--btn-radius) var(--btn-radius) 0;
}

/* ── Mittlere Buttons → keine Rundung (default 0, aber explizit) ── */
.ui-btn-group .ui-btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}

/* ── Icons ── */
.ui-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Badge ── */
.ui-btn .badge {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--badge-bg);
  color: var(--badge-text);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 2;
}

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