/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/.bun/next@15.5.15+21ccd8898788a04d/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!../../node_modules/.bun/next@15.5.15+21ccd8898788a04d/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* Tornyn trainers — mobile-first global CSS.
 *
 * Zero framework. Big tap targets, dark text on light bg, no horizontal scroll,
 * generous spacing so it works comfortably on a phone held in one hand on the
 * gym floor. Tested at 375px wide.
 */

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  margin: 0;
  padding: 0;
  background: #f7f7f8;
  color: #111;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.4;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px 16px 96px;
}

header.app {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid #e5e5ea;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

header.app h1 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

header.app .who {
  font-size: 13px;
  color: #555;
}

h2 {
  font-size: 22px;
  margin: 4px 0 12px;
}

h3 {
  font-size: 17px;
  margin: 12px 0 8px;
  color: #333;
}

p.muted {
  color: #6b6b70;
  margin: 4px 0 16px;
}

/* Cards / list items */
.card {
  background: #fff;
  border: 1px solid #e5e5ea;
  border-radius: 14px;
  padding: 14px 16px;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
}

.card .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #888;
}

.card .name {
  font-weight: 600;
  font-size: 17px;
}

.card .sub {
  color: #555;
  font-size: 14px;
}

.card .chev {
  color: #999;
  font-size: 22px;
  line-height: 1;
}

.pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 9999px;
  background: #eef;
  color: #335;
  font-size: 12px;
  font-weight: 600;
}
.pill.warn { background: #fef3c7; color: #845; }
.pill.ok   { background: #dcfce7; color: #064; }
.pill.gray { background: #ececf0; color: #555; }

/* Big tappable buttons (44px+ height per Apple HIG, we go bigger) */
.btn {
  display: block;
  width: 100%;
  padding: 16px 18px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 14px;
  border: 0;
  cursor: pointer;
  text-align: center;
}

.btn-primary { background: #111; color: #fff; }
.btn-primary:active { background: #333; }

.btn-success { background: #0a7c3a; color: #fff; }
.btn-success:active { background: #084d22; }

.btn-danger { background: #b42323; color: #fff; }
.btn-danger:active { background: #7a1010; }

.btn-secondary { background: #fff; color: #111; border: 1px solid #d1d1d6; }
.btn-secondary:active { background: #f1f1f3; }

.btn[disabled] { opacity: 0.5; cursor: not-allowed; }

/* Stack of buttons */
.stack > * + * { margin-top: 10px; }

/* Forms */
input[type="number"],
input[type="text"],
textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 17px;
  border: 1px solid #d1d1d6;
  border-radius: 12px;
  background: #fff;
  color: #111;
}

label {
  font-size: 14px;
  color: #444;
  display: block;
  margin: 0 0 6px;
}

.row { display: flex; gap: 8px; align-items: center; }
.row > * { flex: 1 1; min-width: 0; }

/* Section chips */
.day-chip {
  display: inline-block;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 9999px;
  margin-right: 8px;
}

.kv {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #555;
}

.banner {
  background: #fef3c7;
  border: 1px solid #f0c674;
  color: #5b4520;
  padding: 12px 14px;
  border-radius: 12px;
  margin: 0 0 14px;
}

.banner.error { background: #fee2e2; border-color: #fca5a5; color: #7a1010; }
.banner.info  { background: #e0f2fe; border-color: #93c5fd; color: #1e3a5f; }

.empty {
  text-align: center;
  padding: 32px 16px;
  color: #777;
}

.set-row {
  display: grid;
  grid-template-columns: 36px 1fr 1fr 56px;
  grid-gap: 8px;
  gap: 8px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed #e5e5ea;
}

.set-row .n {
  font-weight: 600;
  color: #555;
}

footer.app {
  text-align: center;
  font-size: 12px;
  color: #999;
  padding: 24px 16px 12px;
}

