/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */


/* Timer Widget Styles */
.timer-widget {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.5rem 0;
}

.timer-display {
  background: rgba(255,255,255,0.45);
  color: #2d3748;
  border-radius: 9999px;
  padding: 0.4rem 1.2rem;
  font-size: 1.25rem;
  font-weight: 600;
  box-shadow: 0 2px 8px 0 rgba(80, 80, 180, 0.08);
  letter-spacing: 0.05em;
  min-width: 6ch;
  width: 7ch;
  text-align: center;
  border: 1.5px solid rgba(120,120,200,0.08);
  display: flex;
  justify-content: center;
  align-items: center;
}

.timer-btn {
  position: relative;
  background: linear-gradient(90deg, rgba(5, 140, 237, 0.73) 0%, #507ed5 100%);
  color: #fff;
  border: none;
  border-radius: 9999px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(80, 80, 180, 0.08);
  transition: background 0.2s, box-shadow 0.2s;
  outline: none;
}

.timer-btn:hover, .timer-btn:focus {
  background: linear-gradient(90deg, #6dbfdd 0%, #588ae8 100%);
  box-shadow: 0 4px 16px 0 rgba(80, 80, 180, 0.15);
}

.timer-btn svg {
  width: 24px;
  height: 24px;
  display: block;
  margin: 0 auto;
}

.timer-icon-abs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
