* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    min-height: 100vh;
    margin: 0;
}

.container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  width: 100%;
  max-width: 600px;
  text-align: center;
  overflow-y: auto;
}

.command-block {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    justify-items: start; /* Aligns items to the start of their grid cells */
    gap: 10px;
    align-items: center;
    text-align: left;
    margin-bottom: 10px;
}

.form-row:last-child {
    margin-bottom: -10px;  // Removes margin at the bottom of the last input group
}

.form-checkbox {
    grid-template-columns: 1fr 7fr;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 500;
}

input[type="text"], input[type="number"], select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

button {
  background-color: #6200ee;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  margin-top: 1rem;
  padding: 12px 24px;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #3700b3;
}

button:disabled, button:disabled:hover {
  background-color: #9a9a9a;
  cursor: not-allowed;
}

input[type="text"]:disabled {
  background-color: #e0e0e0;
}

.example {
    font-style: italic;
    display: block;
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
}

input[type="checkbox"] {
    transform: scale(2);
    accent-color: #FFF;
    cursor: pointer;
    margin-left: 10px;
}

.marginTopBottom
{
    margin-top: 12px;
    margin-bottom: 12px;
}

.labelSize {
  font-size: 14px;
  font-weight: 500;
}

p {
  font-size: 14px;
  margin-top: 1rem;
}

#warning {
  color: darkred;
}
