/* ===== Alarm Clock Styles =====
   Modal inputs (timer-clock-bg, timer-digit-group, timer-sound-btn,
   timer-label-input, etc.) are reused from timer.css; this file only
   contains alarm-specific pieces and a few modal-size overrides. */

/* ===== Live current clock ===== */
.alarm-current {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  user-select: none;
  margin-bottom: 48px;
}

/* inline-flex + align-items:baseline aligns the AM/PM baseline to the
   digits' baseline exactly, no font-metrics guessing. A hidden ::before
   mirrors the AM/PM on the left so the digits stay visually centered. */
.alarm-now-time {
  display: inline-flex;
  align-items: baseline;
  font-size: 96px;
  font-weight: 400;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  letter-spacing: -2px;
  line-height: 1;
}

.alarm-now-time::before {
  content: 'AM';
  visibility: hidden;
  margin-right: 12px;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.5px;
  min-width: 3ch;
  text-align: center;
}

.alarm-now-ampm {
  margin-left: 12px;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  line-height: 1;
  min-width: 3ch;
  text-align: center;
}

.alarm-now-date {
  font-size: 15px;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

/* ===== List ===== */
.alarm-wrap {
  width: 100%;
  max-width: 960px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 80px;
}

.alarm-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 16px;
  width: 100%;
}

.alarm-empty {
  font-size: 15px;
  color: var(--text-secondary);
  text-align: center;
  padding: 30px 0;
  line-height: 1.6;
}

.alarm-empty strong {
  color: var(--text-primary);
  font-weight: 500;
}

.alarm-empty.hidden {
  display: none;
}

/* ===== Card =====
   Alarm cards live INSIDE the hero (which uses --bg-primary), so the card
   surface must follow the hero scheme - not the content-section scheme.
   Dark mode default below; light + color themes override. */
.alarm-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 18px 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 0;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.2s;
}

/* Only the interactive controls (toggle, edit, delete) should receive
   pointer/selection. Everything else in the card is display-only. */
.alarm-card-time,
.alarm-card-label,
.alarm-card-meta {
  pointer-events: none;
}

[data-theme="light"] .alarm-card {
  background: #ffffff;
  border-color: #e5e5e5;
}

/* Delete animation: a plain 0.6s fade - no scale/shrink, so the card looks
   like it's gently dissolving in place. Pointer-events off so the dying
   card can't be clicked again. */
.alarm-card.removing {
  opacity: 0;
  pointer-events: none;
}

/* On color themes the hero bg is the accent color; the alarm card sits
   inside the hero so it uses a translucent glass surface instead of solid
   white (which would clash with the white text inherited from --text-primary). */
[data-theme="red"] .alarm-card,
[data-theme="teal"] .alarm-card,
[data-theme="blue"] .alarm-card,
[data-theme="purple"] .alarm-card,
[data-theme="green"] .alarm-card,
[data-theme="slate"] .alarm-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.alarm-card.disabled {
  opacity: 0.5;
}

.alarm-card-row1 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.alarm-card-time {
  font-size: 42px;
  font-weight: 300;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  letter-spacing: -1px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.alarm-card-ampm {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.alarm-card-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  word-break: break-word;
  margin-top: 10px;
  min-height: 18px;
  opacity: 0.9;
}

.alarm-card-meta {
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
  margin-bottom: 14px;
}

.alarm-card-meta .dot {
  width: 3px;
  height: 3px;
  background-color: var(--text-secondary);
  border-radius: 50%;
  display: inline-block;
  opacity: 0.6;
}

.alarm-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #2a2a2a;
}

[data-theme="light"] .alarm-card-actions {
  border-top-color: #e5e5e5;
}

[data-theme="red"] .alarm-card-actions,
[data-theme="teal"] .alarm-card-actions,
[data-theme="blue"] .alarm-card-actions,
[data-theme="purple"] .alarm-card-actions,
[data-theme="green"] .alarm-card-actions,
[data-theme="slate"] .alarm-card-actions {
  border-top-color: rgba(255, 255, 255, 0.22);
}

/* Card action buttons (small, inline) */
.alarm-card-btn {
  height: 30px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  transition: background-color 0.15s, color 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.alarm-card-btn[data-action="edit"] {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.alarm-card-btn[data-action="edit"]:hover {
  background-color: rgba(255, 255, 255, 0.14);
}

[data-theme="light"] .alarm-card-btn[data-action="edit"] {
  background-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .alarm-card-btn[data-action="edit"]:hover {
  background-color: rgba(0, 0, 0, 0.12);
}

.alarm-card-btn[data-action="delete"] {
  background-color: rgba(255, 69, 58, 0.12);
  color: #ff6b5f;
}

.alarm-card-btn[data-action="delete"]:hover {
  background-color: rgba(255, 69, 58, 0.22);
}

[data-theme="light"] .alarm-card-btn[data-action="delete"] {
  background-color: rgba(220, 38, 38, 0.09);
  color: #dc2626;
}

[data-theme="light"] .alarm-card-btn[data-action="delete"]:hover {
  background-color: rgba(220, 38, 38, 0.16);
}

/* On color themes the card sits on a translucent white glass; a pale-red
   label on accent-colored hero is nearly invisible. Use white text on a
   stronger red tint so the Delete action stays legible on any accent. */
[data-theme="red"] .alarm-card-btn[data-action="delete"],
[data-theme="teal"] .alarm-card-btn[data-action="delete"],
[data-theme="blue"] .alarm-card-btn[data-action="delete"],
[data-theme="purple"] .alarm-card-btn[data-action="delete"],
[data-theme="green"] .alarm-card-btn[data-action="delete"],
[data-theme="slate"] .alarm-card-btn[data-action="delete"] {
  background-color: rgba(255, 59, 48, 0.55);
  color: #ffffff;
}

[data-theme="red"] .alarm-card-btn[data-action="delete"]:hover,
[data-theme="teal"] .alarm-card-btn[data-action="delete"]:hover,
[data-theme="blue"] .alarm-card-btn[data-action="delete"]:hover,
[data-theme="purple"] .alarm-card-btn[data-action="delete"]:hover,
[data-theme="green"] .alarm-card-btn[data-action="delete"]:hover,
[data-theme="slate"] .alarm-card-btn[data-action="delete"]:hover {
  background-color: rgba(255, 59, 48, 0.75);
}

/* Toggle switch */
.alarm-toggle {
  position: relative;
  width: 38px;
  height: 22px;
  background-color: #555;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

[data-theme="light"] .alarm-toggle {
  background-color: #c0c0c0;
}

.alarm-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.alarm-toggle.on {
  background-color: var(--btn-start-from);
}

.alarm-toggle.on::after {
  transform: translateX(16px);
}

/* ===== Modal ===== */
.alarm-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  padding: 20px;
}

[data-theme="light"] .alarm-modal-overlay {
  background-color: rgba(0, 0, 0, 0.4);
}

.alarm-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.alarm-modal {
  background: var(--bg-secondary);
  border: 1px solid var(--content-border);
  border-radius: 16px;
  padding: 0 28px 24px;
  max-width: 440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transform: translateY(20px);
  transition: transform 0.2s;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

[data-theme="red"] .alarm-modal,
[data-theme="teal"] .alarm-modal,
[data-theme="blue"] .alarm-modal,
[data-theme="purple"] .alarm-modal,
[data-theme="green"] .alarm-modal,
[data-theme="slate"] .alarm-modal {
  background: var(--accent);
  border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="red"] .alarm-modal-title,
[data-theme="teal"] .alarm-modal-title,
[data-theme="blue"] .alarm-modal-title,
[data-theme="purple"] .alarm-modal-title,
[data-theme="green"] .alarm-modal-title,
[data-theme="slate"] .alarm-modal-title {
  color: #ffffff;
  opacity: 1;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

[data-theme="red"] .alarm-modal .timer-unit-labels span,
[data-theme="teal"] .alarm-modal .timer-unit-labels span,
[data-theme="blue"] .alarm-modal .timer-unit-labels span,
[data-theme="purple"] .alarm-modal .timer-unit-labels span,
[data-theme="green"] .alarm-modal .timer-unit-labels span,
[data-theme="slate"] .alarm-modal .timer-unit-labels span {
  color: #ffffff;
}

[data-theme="red"] .alarm-modal .timer-clock-bg,
[data-theme="teal"] .alarm-modal .timer-clock-bg,
[data-theme="blue"] .alarm-modal .timer-clock-bg,
[data-theme="purple"] .alarm-modal .timer-clock-bg,
[data-theme="green"] .alarm-modal .timer-clock-bg,
[data-theme="slate"] .alarm-modal .timer-clock-bg {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

[data-theme="red"] .alarm-modal .timer-label-input,
[data-theme="teal"] .alarm-modal .timer-label-input,
[data-theme="blue"] .alarm-modal .timer-label-input,
[data-theme="purple"] .alarm-modal .timer-label-input,
[data-theme="green"] .alarm-modal .timer-label-input,
[data-theme="slate"] .alarm-modal .timer-label-input {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  color: #ffffff;
}

[data-theme="red"] .alarm-modal .timer-label-input::placeholder,
[data-theme="teal"] .alarm-modal .timer-label-input::placeholder,
[data-theme="blue"] .alarm-modal .timer-label-input::placeholder,
[data-theme="purple"] .alarm-modal .timer-label-input::placeholder,
[data-theme="green"] .alarm-modal .timer-label-input::placeholder,
[data-theme="slate"] .alarm-modal .timer-label-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

[data-theme="red"] .alarm-modal .timer-sound-btn,
[data-theme="teal"] .alarm-modal .timer-sound-btn,
[data-theme="blue"] .alarm-modal .timer-sound-btn,
[data-theme="purple"] .alarm-modal .timer-sound-btn,
[data-theme="green"] .alarm-modal .timer-sound-btn,
[data-theme="slate"] .alarm-modal .timer-sound-btn {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  color: #ffffff;
}

/* Dropdowns (hour/min picker + sound list) inside the modal inherit a dark
   #2a2a2a bg by default. On color themes the modal is an accent color, so
   the dark dropdown clashes. Use a translucent dark overlay tinted onto the
   accent so the dropdown still reads as a menu without breaking the tone. */
[data-theme="red"] .alarm-modal .timer-mobile-dropdown,
[data-theme="teal"] .alarm-modal .timer-mobile-dropdown,
[data-theme="blue"] .alarm-modal .timer-mobile-dropdown,
[data-theme="purple"] .alarm-modal .timer-mobile-dropdown,
[data-theme="green"] .alarm-modal .timer-mobile-dropdown,
[data-theme="slate"] .alarm-modal .timer-mobile-dropdown,
[data-theme="red"] .alarm-modal .timer-sound-dropdown,
[data-theme="teal"] .alarm-modal .timer-sound-dropdown,
[data-theme="blue"] .alarm-modal .timer-sound-dropdown,
[data-theme="purple"] .alarm-modal .timer-sound-dropdown,
[data-theme="green"] .alarm-modal .timer-sound-dropdown,
[data-theme="slate"] .alarm-modal .timer-sound-dropdown {
  background-color: rgba(0, 0, 0, 0.22);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

[data-theme="red"] .alarm-modal .timer-mobile-dropdown-item,
[data-theme="teal"] .alarm-modal .timer-mobile-dropdown-item,
[data-theme="blue"] .alarm-modal .timer-mobile-dropdown-item,
[data-theme="purple"] .alarm-modal .timer-mobile-dropdown-item,
[data-theme="green"] .alarm-modal .timer-mobile-dropdown-item,
[data-theme="slate"] .alarm-modal .timer-mobile-dropdown-item,
[data-theme="red"] .alarm-modal .timer-sound-option,
[data-theme="teal"] .alarm-modal .timer-sound-option,
[data-theme="blue"] .alarm-modal .timer-sound-option,
[data-theme="purple"] .alarm-modal .timer-sound-option,
[data-theme="green"] .alarm-modal .timer-sound-option,
[data-theme="slate"] .alarm-modal .timer-sound-option {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

[data-theme="red"] .alarm-modal .timer-mobile-dropdown-item.selected,
[data-theme="teal"] .alarm-modal .timer-mobile-dropdown-item.selected,
[data-theme="blue"] .alarm-modal .timer-mobile-dropdown-item.selected,
[data-theme="purple"] .alarm-modal .timer-mobile-dropdown-item.selected,
[data-theme="green"] .alarm-modal .timer-mobile-dropdown-item.selected,
[data-theme="slate"] .alarm-modal .timer-mobile-dropdown-item.selected,
[data-theme="red"] .alarm-modal .timer-sound-option.selected,
[data-theme="teal"] .alarm-modal .timer-sound-option.selected,
[data-theme="blue"] .alarm-modal .timer-sound-option.selected,
[data-theme="purple"] .alarm-modal .timer-sound-option.selected,
[data-theme="green"] .alarm-modal .timer-sound-option.selected,
[data-theme="slate"] .alarm-modal .timer-sound-option.selected {
  color: #ffe58f;
}

.alarm-modal-overlay.active .alarm-modal {
  transform: translateY(0);
}

.alarm-modal-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.7;
  align-self: stretch;
  margin: 0 -28px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--content-border);
  line-height: 1;
}

/* Modal action buttons */
.alarm-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 6px;
  width: 260px;
}

.alarm-modal-actions .btn {
  flex: 1;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* ===== Overrides to timer-* picker visuals for modal context =====
   The timer-clock-bg is designed for a full-page picker (556x156 with
   120px digits). Shrink it to fit a 440px modal. */
.alarm-modal .timer-clock-bg {
  width: 340px;
  height: 112px;
}

.alarm-modal .timer-digit-group {
  font-size: 76px;
  font-weight: 400;
  min-width: 128px;
  padding: 6px 0;
}

.alarm-modal .timer-colon {
  font-size: 76px;
  font-weight: 400;
}

.alarm-modal .timer-unit-labels span {
  min-width: 128px;
}

.alarm-modal .timer-label-input,
.alarm-modal .timer-sound-btn {
  width: 260px;
  height: 30px;
  font-size: 13px;
}

.alarm-modal .timer-sound-dropdown {
  width: 260px;
}

.alarm-modal .timer-sound-toggle {
  color: #fff;
  right: 5px;
}

.alarm-modal .timer-label-wrap {
  margin-top: 0;
}

.alarm-modal .timer-sound-wrap {
  margin-top: 0;
}

/* ===== AM/PM toggle (modal) ===== */
.alarm-ampm-wrap {
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.alarm-ampm-btn {
  width: 88px;
  height: 32px;
  background-color: #202020;
  border: none;
  border-radius: 6px;
  box-shadow: inset 0px -1px 0px 0px #3b3b3b;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  transition: background-color 0.15s, transform 0.1s;
  -webkit-tap-highlight-color: transparent;
}

.alarm-ampm-btn:hover {
  background-color: #2a2a2a;
}

.alarm-ampm-btn:active {
  transform: scale(0.96);
}

[data-theme="light"] .alarm-ampm-btn {
  background-color: #ebebeb;
  box-shadow: inset 0px -1px 0px 0px #d0d0d0;
  color: #000000;
}

[data-theme="light"] .alarm-ampm-btn:hover {
  background-color: #dfdfdf;
}

[data-theme="red"] .alarm-ampm-btn,
[data-theme="teal"] .alarm-ampm-btn,
[data-theme="blue"] .alarm-ampm-btn,
[data-theme="purple"] .alarm-ampm-btn,
[data-theme="green"] .alarm-ampm-btn,
[data-theme="slate"] .alarm-ampm-btn {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  color: #ffffff;
}

[data-theme="red"] .alarm-ampm-btn:hover,
[data-theme="teal"] .alarm-ampm-btn:hover,
[data-theme="blue"] .alarm-ampm-btn:hover,
[data-theme="purple"] .alarm-ampm-btn:hover,
[data-theme="green"] .alarm-ampm-btn:hover,
[data-theme="slate"] .alarm-ampm-btn:hover {
  background-color: rgba(255, 255, 255, 0.18);
}

/* ===== Ring overlay ===== */
.alarm-ring-overlay {
  position: fixed;
  inset: 0;
  background-color: var(--bg-primary);
  z-index: 300;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
}

/* Pulse lives on a pseudo-element so the solid theme bg stays put while the
   warm tint breathes on top. */
.alarm-ring-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  animation: alarmPulse 1.4s ease-in-out infinite;
}

.alarm-ring-overlay > * {
  position: relative;
  z-index: 1;
}

.alarm-ring-overlay.active {
  display: flex;
}

@keyframes alarmPulse {
  0%, 100% { background-color: transparent; }
  50% { background-color: rgba(255, 159, 11, 0.08); }
}

.alarm-ring-bell {
  width: 72px;
  height: 72px;
  color: #ff9f0b;
  animation: alarmShake 0.5s ease-in-out infinite;
}

@keyframes alarmShake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-12deg); }
  75% { transform: rotate(12deg); }
}

.alarm-ring-time {
  display: inline-flex;
  align-items: baseline;
  font-size: 96px;
  font-weight: 300;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  letter-spacing: -2px;
  line-height: 1;
}

.alarm-ring-time::before {
  content: 'AM';
  visibility: hidden;
  margin-right: 12px;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.5px;
  min-width: 3ch;
  text-align: center;
}

.alarm-ring-ampm {
  margin-left: 12px;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  line-height: 1;
  min-width: 3ch;
  text-align: center;
}

.alarm-ring-label {
  font-size: 20px;
  color: var(--text-primary);
  text-align: center;
  max-width: 90vw;
  word-break: break-word;
  line-height: 1.45;
}

.alarm-ring-btn {
  width: 220px;
  height: 44px;
  background: linear-gradient(to bottom, var(--btn-stop-from), var(--btn-stop-to));
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  margin-top: 8px;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.1s;
}

.alarm-ring-btn:active {
  transform: scale(0.96);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .alarm-now-time {
    font-size: 64px;
    letter-spacing: -1px;
  }

  .alarm-now-time::before {
    font-size: 24px;
    margin-right: 4px;
    min-width: 2.5ch;
  }

  .alarm-now-ampm {
    font-size: 24px;
    margin-left: 4px;
    min-width: 2.5ch;
  }

  .alarm-now-date {
    font-size: 14px;
  }

  .alarm-current {
    margin-bottom: 32px;
  }

  .alarm-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .alarm-wrap {
    padding: 0 20px;
  }

  .alarm-card-time {
    font-size: 36px;
  }

  .alarm-modal {
    padding: 0 20px 20px;
    gap: 16px;
  }

  .alarm-modal-title {
    margin: 0 -20px;
    padding: 16px 20px;
  }

  .alarm-modal .timer-clock-mobile {
    gap: 16px;
  }

  .alarm-ring-time {
    font-size: 64px;
  }

  .alarm-ring-time::before {
    font-size: 24px;
    margin-right: 4px;
    min-width: 2.5ch;
  }

  .alarm-ring-ampm {
    font-size: 24px;
    margin-left: 4px;
    min-width: 2.5ch;
  }

  .alarm-ring-label {
    font-size: 16px;
  }

  .alarm-ring-bell {
    width: 56px;
    height: 56px;
  }
}
