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%;
}

/*---------------*/

h1 {
    color: #22a86a;
    font-size: 2rem;
}

.btn-primary {
    background-color: #22a86a;
    border-color: #22a86a;
    font-weight: 700;
    padding: 0.8rem;
    font-size: 1.2rem;
}

.btn-primary:hover {
    background-color: var(--bs-success);
    border-color: var(--bs-success);
}

label {
    color: #22a86a;
    font-weight:700;
    font-size: 1.2rem;
}

.inputGrande {
    padding: 0.8rem;
    
}

a {
    font-size: 1.2rem;
}

p {
    font-size: 1.2rem;
}

.form-control:focus, .form-select:focus {
    outline: 2px solid #22a86a;
    box-shadow: 0 0 18px rgba(34, 168, 106, 0.7);
}

.btn-outline-danger:hover {
    color: #fff !important;
}

.btn-outline-danger {
    font-weight: 600;
    padding: 0.8rem;
    font-size: 1rem;
}

td {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
}

.btn-trash {
    background-image: url(../img/trash-fill.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px;
    width: 40px;
    height: 38px;
}

body {
    display: grid;
    min-height: 100dvh;
    grid-template-rows:
        auto 1fr auto;  
}

body {
    margin: 0;
}