.clock-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px;
  justify-content: center;
}

.clock-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  padding: 25px;
  width: 280px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Круглий дисплей як на малюнку */
.display-circle {
  width: 150px;
  height: 150px;
  background: #f0f0f0;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Courier New', monospace;
  color: #212353;
  padding: 10px;
}

.display-city {
  font-weight: bold;
  margin-bottom: 5px;
}

.display-time {
  font-size: 18px;
  color: #9C69E2;
}

/* Кнопки під годинником */
.clock-btns {
  display: flex;
  justify-content: space-around;
  gap: 10px;
}

.clock-btns button {
  flex: 1;
  padding: 10px 5px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  color: white;
  transition: 0.3s;
}

.btn-time {
  background-color: #a3cf62;
}

/* Зелена */
.btn-datetime {
  background-color: #4b69ff;
}

/* Синя */
.btn-delete {
  background-color: #ff4b4b;
}

/* Червона */

.clock-btns button:hover {
  opacity: 0.8;
  transform: scale(1.05);
}