html {
  font-size: 14px;
}

@media (min-width: 900px) {
  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;
    background-color: #f7f8fa;
    color: #333;
}


h1, h4 {
    color: #4f6d7a;
}

/* Estilo para Labels */
label {
    color: #6c757d;
    font-weight: bold;
}

/* Estilo para Inputs */
.pastel-input {
    background-color: #e6f7ff;
    border: 1px solid #b3d7f5;
    color: #4f6d7a;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
}

.pastel-input:focus {
    border-color: #66b3ff;
    box-shadow: 0 0 8px rgba(102, 179, 255, 0.5);
}

/* Estilo para Botões */
.btn-primary {
    background-color: #77aaff;
    border-color: #66aacc;
}

.btn-primary:hover {
    background-color: #66aaff;
    border-color: #5599cc;
}

.btn-info {
    background-color: #85c1e9;
    border-color: #70a9c0;
}

.btn-warning {
    background-color: #f7c331;
    border-color: #f5b500;
}

.btn-danger {
    background-color: #f4cccc;
    border-color: #e6b8b7;
}

.btn-secondary {
    background-color: #dcdcdc;
    border-color: #c4c4c4;
}

/* Estilo para as tabelas */
.table {
    background-color: #ffffff;
    border: 1px solid #d3d3d3;
    border-radius: 5px;
}

.table th {
    background-color: #f1f1f1;
    color: #333;
}
