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;
}

.field-validation-error {
    color: #e01d1d
}

.close-alert{
    position:absolute;
    right: -10px;
    top: -15px;
    border-radius: 15px;
    width: 30px;
    height: 31px;

}

/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    color: #53a8ff;
    font-size: 22px;
}

.logo-text {
    color: #111;
    font-size: 28px;
    font-weight: bold;
}

.login {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #444;
    font-size: 15px;
}

    .login i {
        font-size: 18px;
}

.bemvindo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #444;

}

.usuario-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bemvindo {
    color: #333;
    font-weight: 500;
    text-decoration: none;
}

.btn-group {
    display: flex;
    gap: 10px;
}

.dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #444;
}

.sair {
    color: #dc3545;
    text-decoration: none;
    font-weight: 500;
}

.sair:hover {
    text-decoration: underline;
}

/* Container que envolve os controles da tabela */
.dataTables_wrapper .row:first-child {
    background-color: #f8f9fa; /* Cinza bem claro */
    padding: 15px;
    border-radius: 8px 8px 0 0; /* Arredonda só em cima */
    border: 1px solid #dee2e6;
    border-bottom: none;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

/* Customização dos inputs de pesquisa e select */
.dataTables_length select,
.dataTables_filter input {
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 5px 10px;
    background-color: #fff;
}

/* Espaçamento entre o texto e o input */
.dataTables_filter input {
    margin-left: 10px;
}

/* CSS Logo */

.logo-img {
    height: 60px;
    width: auto;
    margin-right: 10px;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.navbar {
    display: flex;
    align-items: center;
    padding: 12px 30px;
    border-bottom: 1px solid #ddd;
    background: #fff;
}

/* Área logo + nome - Espaçamento entre o Logo e do Menu*/
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 50px;
}

/* Logo */
.logo-img {
    height: 45px;
    width: auto;
}

/* Nome da empresa */
.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #1f2d3d;
}