.pomodoro-container {
  padding: 2rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #f0f4ff;
  box-sizing: border-box;
  position: relative;
}

.pomodoro-container h2 {
  text-align: center;
  position: relative;
  top: -30px;
  font-size: 1.5rem;
  font-family: 'Lemon Milk', sans-serif;
  font-weight: bold;
  margin-bottom: 2rem;
    color: #1dd1a1;
  letter-spacing: 1px;
  border-bottom: none;
  margin-bottom: 0;   
  padding-bottom: 0;
  box-shadow: none;   
}

.timer-display {
  text-align: center;
  font-family: 'Lemon Milk', sans-serif;
  font-size: 3.3rem;
  color: #ffffff;
  font-weight: bold;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.12);
  margin-bottom: 2rem;
}

.timer-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.timer-buttons button {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 14px;
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  background: linear-gradient(135deg, #1dd1a1, #10ac84);
  color: #000;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 18px rgba(29, 209, 161, 0.35);
}

.timer-buttons button:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(16, 172, 132, 0.5);
}

.session-type {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1rem;
}

.session-type button {
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  color: #ccc;
  background: transparent;
  border: 1.5px solid #888;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.25s ease;
}

.session-type button:hover,
.session-type button.active {
  background: #506EEC;
  color: #fff;
  border-color: #506EEC;
  box-shadow: 0 0 12px rgba(80, 110, 236, 0.4);
}
