.container {
  background: transparent;
  border: none;
}

.widget-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #333;
  border-radius: 20px;
  padding: 30px 40px;
  width: min(720px, 100%);
  min-width: 0;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.widget-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}

#countdown {
  font-size: 2em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
  min-height: 2.5em;
  text-align: center;
}

.progress-container {
  width: 100%;
  background-color: #111;
  border-radius: 10px;
  height: 25px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: #ffcc00;
  width: 100%;
  transition: width 1s linear;
}
