.timeout-message {
  background: #fee2e2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 12px 16px;
  margin: 16px 0;
  color: #dc2626;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.timeout-message i {
  font-size: 16px;
}

.timeout-message #countdown {
  font-weight: 600;
  color: #b91c1c;
}

.timeout-content {
  flex: 1;
}

.timeout-progress {
  margin-top: 8px;
  width: 100%;
  height: 4px;
  background: #fecaca;
  border-radius: 2px;
  overflow: hidden;
}

.timeout-progress-bar {
  height: 100%;
  background: #dc2626;
  border-radius: 2px;
  transition: width 0.5s linear;
  width: 100%;
}