/******************************************************************************/
/* Root + Base                                                                */
/******************************************************************************/

:root { 
  --brand: #059669;               /* Synceroo emerald brand */
  --brand-dark: #047857;          /* hover/active shade */
  --brand-light: #d1fae5;         /* light tint for borders or highlights */
  --brand-verylight: #ecfdf5;     /* hover background */
  --brand-veryverylight: #f9fefb; /* dropdown bg */
  --ink-muted: #6b7280;           /* muted text */
  --border: #dfe3e8;              /* neutral border */
}

* { box-sizing: border-box; }

body {
  font-family: "Poppins", sans-serif;
  margin: 10px;
  font-size: 14px;
  background: #fff;
}

.environment-banner {
  margin-bottom: 10px;
  padding: 8px 12px;
  border: 1px solid #b91c1c;
  border-radius: 10px;
  background: #fee2e2;
  color: #991b1b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

button,
input,
select,
textarea {
  font-family: "Poppins", sans-serif;
}

.hidden { display: none; }

#status {
  font-size: 0.9em;
  margin-top: 10px;
  color: green;
}

body.keyboard-open .title-row,
body.keyboard-open .page-subtitle,
body.keyboard-open .toolbar,
body.keyboard-open .tab-panel,
body.keyboard-open .pagination-row {
  display: none !important;
}

body.keyboard-open #tab-workspace {
  padding: 0;
  border: 0;
  margin-top: 0;
  background: #fff;
}

body.keyboard-open #excelUI,
body.keyboard-open #wordUI,
body.keyboard-open #powerpointUI {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
