/* style.css */

body {
  background-color: #f0f0f5;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

#pomodoro {
  text-align: center;
  margin-top: 60px;
  background: #f4f4f4;
  padding: 30px;
  border-radius: 12px;
  width: 280px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

#timeInput {
  width: 60px;
  font-size: 18px;
  padding: 4px;
  margin-left: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  text-align: center;
}

.note {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

#timer {
  font-size: 48px;
  margin: 20px 0;
  font-weight: bold;
  color: #e63946;
}

.buttons button {
  font-size: 16px;
  padding: 8px 14px;
  margin: 5px;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  background-color: #457b9d;
  color: white;
  transition: background-color 0.3s ease;
}

.buttons button:hover:not(:disabled) {
  background-color: #1d3557;
}

.buttons button:disabled {
  background-color: #a8a8a8;
  cursor: not-allowed;
}
