/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
 .stopwatch-container {
  /* margin: 20px auto; */
  margin: 0 20px 0 auto;
  width: 270px;
  background: #fff;
  padding: 0 15px;
  text-align: center;
  border-radius: 8px;
}

.stopwatch-timer {
  background: #ddd;
  height: 60px;
  line-height: 60px;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 4px;
  border-radius: 8px;
}

.stopwatch-btn {
  width: 80px;
  height: 40px;
  line-height: 40px;
  background: #ddd;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
}

.stopwatch-controllers {
  display: flex;
  justify-content: space-between;
}

.inactive {
  opacity: 0.6;
}

::placeholder {
  font-size: 0.8rem;
  color: #bbb !important;
}
