/*
Theme Name: Pomodoro Timer Online
Theme URI: https://example.com/
Author: OpenAI
Description: WordPress theme conversion of the uploaded Pomodoro Timer Online app, preserving the original UI and app behavior while adding Customizer controls for ads, footer content, logo, and site icon.
Version: 1.1.1
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: pomodoro-timer-online
*/

html, body {
  margin: 0;
  padding: 0;
}

body.pomodoro-theme-app {
  background: #F8F9FA;
}

#pomodoro-app-root:empty::before {
  content: "Loading Pomodoro Timer Online...";
  display: block;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
  color: rgba(0,0,0,.45);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}


html, body, #pomodoro-app-root {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html, body, #pomodoro-app-root {
    overflow-x: hidden;
  }
}

@media (max-width: 640px) {
  body.pomodoro-theme-app main .max-w-2xl.mx-auto.mt-12.space-y-8 form.mb-8 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  body.pomodoro-theme-app main .max-w-2xl.mx-auto.mt-12.space-y-8 form.mb-8 > input,
  body.pomodoro-theme-app main .max-w-2xl.mx-auto.mt-12.space-y-8 form.mb-8 > button {
    width: 100%;
    min-width: 0;
  }

  body.pomodoro-theme-app main .max-w-2xl.mx-auto.mt-12.space-y-8 form.mb-8 > button {
    justify-content: center;
  }
}
