/* Color variables */
:root {
  --bg: #051F40;
  --header: #32BFFE;
  --accent: #F7771F;
  --secondary: #43D4E3;
  --text: #ffffff;
  --black: #111111;
  --overlay-opacity: 0.8;
  --overlay-color: rgba(5,31,64,var(--overlay-opacity));
}
/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, .superadmin, .normal {
  background: var(--bg) url('/static/background_page.png') no-repeat center center fixed;
  background-size: cover;
  color: var(--text);
  font-family: sans-serif;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
}
.superadmin::before,
.normal::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-color); /* semi-transparent overlay with your bg color */
  pointer-events: none; /* so clicks go through */
  z-index: -1;
}
.stripe-table-container {
  display: block !important;
  width: 100%;
  max-width: 95%; /* or your desired max width */
  margin: 0 auto;
}

.stripe-table-container stripe-pricing-table {
  display: block; /* or inline-block, as needed */
  width: 100%; /* or a fixed width */
}

/* Container for headline text top 1/3 */
.header-container {
  max-width: 50%;
  text-align: center;
  margin-top: 1rem;
}
.admin-container {
  max-width: 90%;
  text-align: center;
  margin-top: 1rem;
}

.header-container-main, .dashboard-menu-bar {display:flex; align-items:center; justify-content:center; margin-bottom:1rem; gap: 1rem; }
.header-container-main > * {flex-shrink: 0; margin: 0; vertical-align: middle;}
.dashboard-menu-bar > * {flex-shrink: 0; margin: 0; vertical-align: middle;}

h1 {color: var(--header); font-weight: bold; font-size: 2.5rem; margin-bottom: 1rem; align-self: center;}
h2, h3 {color: var(--accent); font-weight: bold; font-size: 1.5rem; margin-bottom: 1rem; align-self:center;}
h3 {color: var(--bg); margin-bottom: 1rem;}
p {font-size: 1rem; line-height: 1.2; margin: 0.25rem 0; color: var(--text); white-space: normal; word-wrap: break-word; overflow-wrap: break-word; align-self:center; }

.header-container-main a {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.form-sidebar {
  width: 25vw;
  background: #06254A;
  border-radius: 2rem;
  box-shadow: 0 8px 32px 6px rgba(247, 247, 247, 0.26), 0 1.5rem 3.5rem rgba(0,0,0,0.18);
  padding: 2rem 1.5rem 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 4vw;
  margin-right: auto; /* forces left alignment even if parent tries to center */
}
.form-center {
  width: 30%;
  margin: 2rem auto; /* Centers horizontally and adds vertical spacing */
  background: #06254A;
  border-radius: 2rem;
  box-shadow: 0 8px 32px 6px rgba(247, 247, 247, 0.26), 0 1.5rem 3.5rem rgba(0,0,0,0.18);
  padding: 2rem 1.5rem 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Make sure the form is vertically stacked and not huge */
.form-sidebar form,
.form-center form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.form-container-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-top: auto;
}

/* Pill-shaped inputs and buttons */
input, select {
  border-radius: 2rem;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  background: var(--text);
  color: var(--bg);
}

button, .button-rev {
  display: inline-block;
  border-radius: 2rem;
  border: none;
  padding: 0.7em 2em; /* slim and only as wide as needed */
  font-size: 1rem;
  background: var(--accent);
  color: var(--text);
  cursor: pointer;
  margin-top: 0.5rem;
  width: auto;
  align-self: center;
  transition: background 0.2s;
}

.button-rev{background:var(--text); color:var(--accent)}

button:hover, .button-rev:hover {
  background: var(--secondary);
}
button:disabled, .button:disabled, .button-rev:disabled {
  background: var(--bg);
  color: var(--text);
  cursor: not-allowed;
  opacity: 0.6;
}

button:disabled:hover, .button:disabled:hover, .button-rev:disabled:hover {background: #ccc;}

.active-disabled {
  background-color: var(--secondary);
  cursor: default;
  pointer-events: none;
}
input[type="checkbox"]:checked + label {
  background-color: var(--secondary);
}
.grid {
  width: 85vw;
  margin: 0 auto 2rem;
  padding: 1rem;
  background-color: var(--accent);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  box-sizing: border-box;
  border-radius: 2rem; /* always rounded edges */
}

.grid-item, .grid-item2 {
  background-color: var(--text);
  color: var(--bg);
  padding: 1rem;
  box-shadow: 0 8px 32px 6px rgba(247, 247, 247, 0.26), 0 1.5rem 3.5rem rgba(0,0,0,0.18);
  border-radius: 2rem; 
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 0.5rem;
}
.grid-item2 {text-align: left; line-height: 1.5; padding: 1.5rem; background-color: var(--secondary)}
.grid-item2 h3 {text-align: center; margin-left: auto;margin-right: auto;}

.grid-item p, .grid-item2 p{color: var(--bg);}
.divider {
  height: 2px;
  background-color: var(--accent);
  width: 50%;
  margin: 1rem auto;
  border-radius: 1rem;
}

.social-buttons {
  display: inline-flex;
  align-items: center;
  background-color: var(--text);  /* white background pill */
  border-radius: 2rem;             /* large pill shape */
  padding: 0.5rem 1rem;            /* padding inside pill */
  gap: 1.5rem;                    /* space between icons */
  justify-content: center;
  width: fit-content;
  align-self: center;
}

.icon-small {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.5rem;
  margin: 0; /* no margin needed since icon centered */
  display: block; /* better control */
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-family: sans-serif;
  color: var(--text);
}

th, td {
  padding: 0.5rem 0.5rem;
  border: 1px solid var(--secondary);
  text-align: left;
}

th {
  background-color: var(--accent);
  color: var(--bg);
  font-weight: bold;
}

tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.1);
}

tr:hover {
  background-color: rgba(247, 119, 31, 0.2); /* accent color with transparency */
}

.form-container {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-top:2rem;
}
.form-container h1 {
  text-align: center;
  width: 100%;
}

.icon {
  font-size: 4rem;        /* controls emoji size */
  line-height: 1;         /* avoid extra vertical space */
  display: flex;          /* enable flex centering */
  align-items: center;
  justify-content: center;
  margin: 0 auto;         /* centers icon block horizontally */
  width: 4rem;            /* optional to keep container block width */
  height: 4rem;           /* optional */
  user-select: none;      /* disables highlight on emoji */
}

.form-container p {
  font-size: 0.75rem;
  margin: 0.25rem 0;
  color: var(--secondary);
  align-self: center;
  cursor: pointer;
  user-select: none;
}

/* Reset and base */
.dashboard-main-content {
  width: 95%;
  margin: 1rem 1rem;
  padding: 1rem;
  background-color: var(--accent);
  color: var(--bg);
  border-radius: 2rem;
  box-shadow: 0 8px 32px 6px rgba(247, 247, 247, 0.26), 0 1.5rem 3.5rem rgba(0,0,0,0.18);
}

.dashboard-main-block {
  width: 100%;
  margin: 1rem auto;
  padding: 2rem;
  background-color: var(--text);
  color: var(--bg);
  border-radius: 2rem;
  box-shadow: 0 8px 32px 6px rgba(247, 247, 247, 0.26), 0 1.5rem 3.5rem rgba(0,0,0,0.18);
}
.dashboard-main-block p {font-size: 1rem; line-height: 1.2; margin: 0.25rem 0; color: var(--bg); white-space: normal; word-wrap: break-word; overflow-wrap: break-word; align-self:center; }

.grid-dash {
  width: 100%;
  margin: 0 auto 2rem;
  padding: 1rem;
  background-color: var(--text);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  box-sizing: border-box;
  border-radius: 2rem; /* always rounded edges */
}

.grid-dash-item {
  background-color: var(--secondary);
  color: var(--bg);
  padding: 1rem;
  box-shadow: 0 8px 32px 6px rgba(247, 247, 247, 0.26), 0 1.5rem 3.5rem rgba(0,0,0,0.18);
  border-radius: 2rem; 
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 0.5rem;
}

.grid-dash-item p {color: var(--bg);}

textarea {
  border-radius: 1.5rem;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  background: var(--text);
  color: var(--bg);
  width: 100%;
  resize: vertical;
  font-family: inherit;
}

input[type="range"] {
  width: 100%;
}

input[type="checkbox"] {
  border-radius: 0.25rem;
  width: auto;
  margin-right: 0.5rem;
}

input[type="file"] {
  background: var(--secondary);
  padding: 0.5rem;
}

/* Form rows */
.form-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-row-full {margin-bottom: 1rem;}

.form-row-multi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.form-group-small select {width: 100%;}
.form-group-small {width: 100%;}

.form-row-radio {
  display: flex;
  flex-direction: column;
  align-items: center;  /* center whole block horizontally */
  width: 100%;          /* allow full width or adjust as needed */
  margin-bottom: 2rem;
}
/* Form groups */
.form-group, .form-group-small {display: flex;flex-direction: column;}


.form-group input, .form-group select,
.form-group-small input, .form-group-small select {
  background-color: var(--text);
  border: 1px solid var(--accent);
  border-radius: 1.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: var(--blue);
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus, .form-group select:focus,
.form-group-small input:focus, .form-group-small select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(255, 204, 0, 0.2);
}

.input-label {
  display: block;
  font-size: 1.05rem;
  color: var(--bg);
  width: 70%;               /* same width as .input-field */
  text-align: left;         /* left-align text within the label */
  box-sizing: border-box;   /* ensure padding/margin are within width */
}  

input[type="checkbox"] {
  width: 1.2rem;
  height: 1.2rem;
  cursor: pointer;
}
.custom-file-upload {
  display: inline-block;
  color: var(--bg);
  cursor: pointer;
  font-weight: 600;
  margin-top: 1rem;
  user-select: none;
}

ul {
  margin-left: 2em;
  padding-left: 1em;
  text-align: left;
  line-height: 1.6;
  font-size: 1rem;
}

.how-to-use-box {
  background-color: var(--text);
  border: 2px solid var(--accent);      /* light gray border */
  border-radius: 2rem;         /* curved corners */
  padding: 1.5rem 2rem;        /* spacing inside */
  margin: 1rem auto;           /* center horizontally */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* subtle shadow */
  font-size: 1rem;
  font-family: sans-serif;
}
.how-to-use-box h3 {
  margin-top: 0;
}

.how-to-use-box pre {
  font-family: sans-serif;
  white-space: pre-wrap;
  word-break: break-word;
  background: var(--text);
  border-radius: 0.25rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  overflow-y: auto;
  margin-bottom: 1rem;
  outline-offset: -4px;
  text-align: left;
  height:auto;
}
.summary-pre {
  white-space: normal;
}

.post-hashtags {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary, #666);
}

a.button {
  all: unset; /* Reset browser defaults */
  display: inline-block;
  border-radius: 2rem;
  padding: 0.7em 2em;
  font-size: 1rem;
  background: var(--accent);
  color: var(--text);
  cursor: pointer;
  margin-top: 0.5rem;
  width: auto;
  align-self: center;
  transition: background 0.2s;
  text-align: center;
  text-decoration: none;
  user-select: none;
}
a.button-rev {
  all: unset; /* Reset browser defaults */
  display: inline-block;
  border-radius: 2rem;
  padding: 0.7em 2em;
  font-size: 1rem;
  background: var(--text);
  color: var(--accent);
  cursor: pointer;
  margin-top: 0.5rem;
  width: auto;
  align-self: center;
  transition: background 0.2s;
  text-align: center;
  text-decoration: none;
  user-select: none;
}

a.button:hover, a.button-rev:hover {
  background: var(--secondary);
  text-decoration: none;
}

.button-row {
  display: flex;
  gap: 1rem;            /* space between buttons */
  flex-wrap: wrap;      /* wrap on narrow screens if needed */
  align-items: center;
  justify-content: center;
}


/* ============================================
   DEMO MODE STYLES - COMPACT CORNER POPUP
   ============================================ */

#ryza-demo-overlay {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 400px;
  max-width: 90vw;
  z-index: 99999;
  animation: slideInFromBottom 0.3s ease;
}

.ryza-demo-popup {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border: 3px solid var(--accent);
}

.ryza-demo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.75rem;
}

.ryza-demo-header h3 {
  color: var(--accent);
  margin: 0;
  font-size: 1.1rem;
}

.ryza-demo-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ryza-demo-close:hover {
  color: var(--accent);
}

.ryza-demo-popup p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--black);
  margin-bottom: 1rem;
}

.ryza-demo-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.ryza-demo-btn-primary,
.ryza-demo-btn-secondary {
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.ryza-demo-btn-primary {
  background: var(--accent);
  color: white;
}

.ryza-demo-btn-primary:hover {
  background: var(--header);
  transform: translateY(-2px);
}

.ryza-demo-btn-secondary {
  background: #f0f0f0;
  color: var(--black);
}

.ryza-demo-btn-secondary:hover {
  background: #e0e0e0;
}

#ryza-demo-indicator {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  z-index: 99998;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  animation: slideInRight 0.5s ease;
}

#ryza-demo-indicator span {
  font-weight: 600;
  font-size: 0.95rem;
}

#ryza-demo-indicator button {
  background: white;
  color: var(--accent);
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

#ryza-demo-indicator button:hover {
  background: var(--bg);
  color: white;
}

.ryza-demo-highlight {
  box-shadow: 0 0 0 4px var(--accent), 0 0 20px rgba(247, 119, 31, 0.5) !important;
  animation: demoHighlightPulse 2s infinite;
  position: relative;
  z-index: 9999;
}

.ryza-demo-pulse {
  animation: demoPulse 1.5s infinite;
}

@keyframes demoHighlightPulse {
  0%, 100% {
    box-shadow: 0 0 0 4px var(--accent), 0 0 20px rgba(247, 119, 31, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px var(--secondary), 0 0 30px rgba(67, 212, 227, 0.7);
  }
}

@keyframes demoPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes slideInFromBottom {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/* ============================================
   DEMO MODE BANNER
   ============================================ */

/* Demo Mode Banner - Single Line */
.demo-mode-banner {
  text-align: center;
  margin-bottom: 1rem;
}

.demo-mode-banner label {
  margin-right: 1rem;
  font-weight: 600;
}

/* Loading Spinners */
.loading-spinner {
  display: none;
  text-align: center;
  padding: 1rem;
  border-radius: 2rem;
  margin-top: 1rem;
}

.spinner-emoji {
  font-size: 3rem;
  animation: spinnerBounce 1.5s ease-in-out infinite;
  line-height: 1;
  margin: 0;
}

.spinner-main-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bg);
  margin: 0.5rem 0 0.25rem 0;
  line-height: 1.3;
}

.spinner-sub-text {
  font-size: 0.9rem;
  color: var(--accent);
  margin: 0;
  line-height: 1.3;
}

@keyframes spinnerBounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.1);
  }
}

.login-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 0 auto 2rem auto;
}
.login-grid .form-center {
  width: 100%;
  margin: 0;
}
.hourglass-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.hourglass-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 320 / 619;
}

.hourglass-image {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    z-index: 2;
}

.sand {
    position: absolute;
    width: 70.3%;
    background: linear-gradient(to bottom, #bb8348, #c9995a);
    opacity: 0.8;
    transition: height 0.5s ease;
    left: 14.06%;
}

.sand-top {
    top: 17.77%;
    max-height: 27.46%;
}

.sand-bottom {
    bottom: 11.15%;
    max-height: 38.77%;
}

.sand-particle {
    position: absolute;
    width: 0.9%;
    height: 0.9%;
    background: #d4a574;
    border-radius: 50%;
    left: 49%;
    opacity: 0.7;
    z-index: 1;
}

.particle-1 {
    animation: fall 2s ease-in infinite;
}

.particle-2 {
    animation: fall 2s ease-in infinite 0.6s;
}

.particle-3 {
    animation: fall 2s ease-in infinite 1.2s;
}

@keyframes fall {
    0% {
        top: 45.23%;
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        top: 50.08%;
        opacity: 0;
    }
}

.label {
    position: absolute;
    font-size: clamp(10px, 2.5vw, 14px);
    font-weight: bold;
    color: #333;
    text-align: center;
    z-index: 3;
    width: 70.3%;
    left: 14.75%;
}

.label-top {
    top: 29%;
}

.label-bottom {
    bottom: 33%;
}

.cooldown-message {
  text-align: center;
  margin-bottom: 30px;
}

.color-button {
  border-radius: 2rem;
  border: none;
  padding: 0.7em 2em;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 0.5rem;
  width: 100%;
  text-align: center;
  transition: background 0.2s;
}

.color-button:hover {
  filter: brightness(0.5);
}

.color-input-wrapper {
  position: relative;
}
.color-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

input[type="submit"] {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font-size: 1.25rem;
  margin-left: 3rem;
}

/* Two-column leader grid */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom:1rem;
}
.leader {
  text-align: center;
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 1rem;
  background: #fafafa;
}
/* Photos and text styles */
.leader-photo {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */

@media (max-width: 1366px) {
  html {
    font-size: 12px !important;
  }
  
  body, .superadmin, .normal {
    padding: 1rem 0.5rem;
  }
  
  .header-container {
    max-width: 90%;
  }
  .header-container-main {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .header-container h1 {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .header-container h2 {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .form-center {
    width: 95%;
  }
  .form-sidebar {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
  .form-container {
    width: 95%;
  }
  
  .form-container .header-container-main {
    flex-direction: column;
    align-items: center;
  }
  
  /* Grids collapse to single column */
  .grid {
    grid-template-columns: 1fr;
    width: 100%;
  }
  
  .grid-dash {
    grid-template-columns: 1fr;
  }
  
  /* Form rows collapse */
  .form-row-two,
  .form-row-multi {
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  }
  
  .form-container-row {
    flex-direction: column;
  }
  
  /* Button rows stack */
  .button-row {
    flex-wrap: wrap;
  }
  
  .button-row button,
  .button-row a.button {
    display: block; /* Force block display */
    box-sizing: border-box;
  }
  
  /* Tables scroll horizontally */
  table {
    display: block;
    overflow-x: auto;
  }
  .admin-container {
    max-width: 100%;
  }
  #ryza-demo-overlay {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    width: auto;
  }
  
  .ryza-demo-popup {
    padding: 1rem;
  }
  
  #ryza-demo-indicator {
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.6rem 0.9rem;
    font-size: 0.85rem;
  }
  
  .ryza-demo-buttons {
    flex-direction: column;
  }
  
  .ryza-demo-btn-primary,
  .ryza-demo-btn-secondary {
    width: 50%;
  }
  .login-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .how-to-use-box {
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    margin: 0.75rem auto;
  }

  .how-to-use-box pre {
    padding: 0.5rem 1rem;
  }

}



