html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* AutomateApp Custom Styles */
.navbar {
  background-color: #2c3e50 !important;
}

.navbar-brand {
  color: #ecf0f1 !important;
  font-weight: bold;
  font-size: 1.3rem;
}

.navbar-brand:hover {
  color: #3498db !important;
}

.nav-link {
  color: #ecf0f1 !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #3498db !important;
}

.container {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

#logContainer {
  background-color: #1e1e1e !important;
  color: #d4d4d4;
  border: 1px solid #444;
  border-radius: 4px;
  padding: 12px !important;
}

#logContainer div {
  line-height: 1.4;
  margin-bottom: 2px;
}

#logs {
  color: #00ff00;
  font-weight: 500;
}

.form-label {
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  border: 1px solid #bdc3c7;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.btn-primary {
  background-color: #3498db;
  border-color: #3498db;
  font-weight: 500;
  padding: 8px 20px;
}

.btn-primary:hover {
  background-color: #2980b9;
  border-color: #2980b9;
}

.btn-secondary {
  background-color: #95a5a6;
  border-color: #95a5a6;
  font-weight: 500;
  padding: 8px 20px;
}

.btn-secondary:hover {
  background-color: #7f8c8d;
  border-color: #7f8c8d;
}

.btn-outline-secondary {
  color: #3498db;
  border-color: #3498db;
}

.btn-outline-secondary:hover {
  background-color: #3498db;
  border-color: #3498db;
}

.input-group > .form-control {
  border-right: 1px solid #bdc3c7;
}

footer {
  background-color: #ecf0f1;
  padding: 20px 0;
  margin-top: 40px;
}

.form-check-label {
  margin-left: 0.5rem;
  cursor: pointer;
}

.form-check-input {
  cursor: pointer;
}

.form-check-input:checked {
  background-color: #3498db;
  border-color: #3498db;
}

#status {
  font-weight: bold;
  color: #27ae60;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  background-color: #ecf0f1;
  display: inline-block;
}