
  #pomodoro-timer {
    width: 270px !important;
    resize: none;
  }
  
  /* SVG clock circle */
  #pomodoro-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg); /* so that 0 is at top */
  }

  /* Digital timer centered */
  #pomodoro-digital {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bahnschrift', sans-serif;
    font-weight: bold;
    color: var(--text-color, white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    font-size: 2rem;
    width: max-content;
  }

  #pomodoro-controls {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    margin-right: 3px;
    margin-left: 3px;
  }

  #pomodoro-controls button {
    width: 120px;
    padding: 10px 5px 8px;
    background: rgba(var(--button-color, 0, 0, 0), 0.2);
    border: none;
    border-radius: 10px;
    color: var(--text-color, white);
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    font-family: 'Bahnschrift', sans-serif; 
  }

  #pomodoro-controls button:hover {
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
  }

  #pomodoro-controls button:active {
    transform: translateY(1px);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  }

  #activity-display {
    text-align: center;
    font-size: 2rem;
    margin-top: 10px;
    padding-top: 0;
    margin-bottom: 15px;
    font-weight: bold;
  }