body {
  font-family: Arial, sans-serif;
  margin: 20px;
  min-height: 100%;
}

/* Switch button styles */
.switch-container {
  display: inline-block;
  margin-left: 20px;
  vertical-align: middle;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #4caf50;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.switch-label {
  margin-left: 10px;
  vertical-align: super;
}
.switch_style {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-around;
  width: 400px;
  padding: 6px;
}

pre.progress{
  border: 1px solid;
  margin: 10px;
  border-radius: 8px;
  background: #ccc;
  padding: 0px;
  color: green;
}

/* Configurações Grid Layout */
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.config-button {
    background-color: #1e40af;
    color: white;
    border: none;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.config-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.config-button .material-symbols-outlined {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.config-button .label {
    font-size: 18px;
    font-weight: 600;
}

/* Body para tela de configurações */
body.config-page {
    background-color: #1e3a8a !important;
    margin: 0;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
