@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('/static/css/buttons.css');
@import url('/static/css/footer.css');
@import url('/static/css/header.css');
@import url('/static/css/responsive.css');

* {
    font-family: 'Rubik', serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    padding: 20px;
    background-color: #f5f5f5;
}

h2 {
    color: #004876;
}

#h2_new_user {
    color: #004876;
    text-align: center;
}

h4 {
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
}

a {
    text-decoration: none;
    color: inherit;
}

li {
    list-style: none;
}

a:hover {
    text-decoration: none;
    color: #004876;
}

.mt-5 {
    height: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
}

.table-responsive {
    overflow-x: auto;
    margin-bottom: 20px;
}

.table {
  text-align: center;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  color: #212529;
}

.table th, .table td {
  padding: 12px 15px;
  vertical-align: middle; /* Alinha verticalmente */
  border-top: 1px solid #dee2e6;
}

.table thead th {
  text-align: center; /* Alinha horizontalmente */
  vertical-align: middle; /* Alinha verticalmente */
  border-bottom: 2px solid #dee2e6;
  font-weight: 600;
}

.table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

td > .btn:hover {
    background-color: #004876; 
}

.bg-primary {
    background-color: #004876 !important;
    color: white;
}


.alert {
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.logout-form {
    display: inline;
}

#form_new_user {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.3rem;
    display: block;
}

.form-control {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.text-danger {
    color: #dc3545;
    font-size: 0.875em;
}

.badge {
    padding: 0.5em 0.75em;
    border-radius: 1rem;
    font-size: 0.875em;
}

.pagination {
    margin-top: 2rem;
}

.page-link {
    color: #004876;
    border: 1px solid #dee2e6;
    margin: 0 2px;
    border: none;
}

.page-item.disabled .page-link {
    color: #6c757d;
    background-color: #fff;
    border-color: #dee2e6;
}

.page-item.active .page-link {
    background-color: #004876;
    color: white;
}

#content > div > div.row.mb-4 > div:nth-child(1) > form > div > button{ /* Botão search */
  border: 1px solid #ced4da
 
}

#content > div > div.row.mb-4 > div:nth-child(1) > form > div > button:hover{
  border: none;
  background-color: #004876;
}


.card {
    border-radius: 15px;
    border: none;
}
    
.form-control-lg {
    border-radius: 10px;
    padding: 1rem;
}
    