body {
  margin: 0;
  background-color: black;
  color: red;
  font-family: 'Courier New', monospace;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* Settings area (Add Time Zone) */
.settings {
  margin: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  background-color: #000; /* match background */
  padding: 10px 15px;
  border: 1px dashed red;
  border-radius: 8px;
}

/* Select and buttons */
select, button, #converter-input, #convert-btn {
  background-color: black;
  color: red;
  border: 1px solid red;
  font-size: 16px;
  padding: 5px 8px;
  border-radius: 4px;
}

select:focus, button:focus, #converter-input:focus, #convert-btn:focus {
  outline: none;
  box-shadow: 0 0 5px red;
  border-color: red;
  color: red;
}

/* Hover effect for buttons */
button:hover, #convert-btn:hover {
  background-color: #220000;
  cursor: pointer;
}

/* Clock container */
.container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.clock {
  text-align: center;
  padding: 10px 20px;
  border-right: 2px dashed red; /* dashed separator */
  position: relative;
}

.clock:last-child {
  border-right: none; /* remove line after last clock */
}

.label {
  font-size: 20px;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.time {
  font-size: 80px;
  text-shadow: 0 0 15px red;
}

/* Remove button */
.remove-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background: none;
  border: none;
  color: red;
  font-size: 20px;
  cursor: pointer;
}

/* Converter box */
.converter {
  margin: 30px;
  text-align: center;
  background-color: #000;
  padding: 15px 20px;
  border: 1px dashed red;
  border-radius: 8px;
}

#converter-input {
  font-size: 16px;
  padding: 5px;
  width: 180px;
}

#convert-btn {
  font-size: 16px;
  padding: 5px 10px;
  margin-left: 10px;
}
