html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  background-color: rgb(210, 209, 224);
  background-color: rgb(210, 209, 224);
}

.navbar-custom {
  background-color: rgb(4, 4, 155) !important;
}

.navbar-custom .navbar-brand {
  color: #fff;
}

.navbar-custom .navbar-nav .nav-link {
  color: #fff;
}

.navbar-custom .navbar-toggler {
  border-color: #fff;
}

.navbar-custom .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.conteiner-form {
    margin-top: 50px;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
}

.conteiner-titulo {
    background-color: #007bff;
    color: #fff;
    padding: 10px 15px;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    border-radius: 8px 8px 0 0;
    margin-bottom: 20px;
}

    .conteiner-titulo h3 {
        margin: 0;
        font-size: 1.6rem;
    }


span{
    border-radius: 10px;
    padding: 3px;
    cursor: pointer; 
    box-shadow: 2px 2px 2px rgb(0,0,0,0.2);
}
button{
  box-shadow: 2px 2px 2px rgb(0,0,0,0.6);
}

.my-modal{
    display:none;
    position:fixed;
    z-index:1;
    left:0;
    top:0;
    width:100%;
    height:100%;
    overflow:auto;
    background-color:rgba(0,0,0,0.4)
}
.conteudoModal {
    background-color: #fefefe;
    margin: 50px auto;
    /* Ajuste essa margem superior conforme necess�rio */
    padding: 50px;
    border: 1px solid #888;
    width: 80%;
}

.close{
    color:#aaa;
    float:right;
    font-size:28px;
    font-weight:bold;
}

.close:hover,
.close:focus{
    color:black;
    text-decoration:none;
    cursor:pointer;
}

th,td{
    padding:8px;
    text-align:left;
}

.selected{
    background-color:rgb(177,179,176)
}

#tableListaNotas {
    border-collapse: collapse;
    width: 100%;
}
.scrollable-content {
    max-height: 300px; /* Defina a altura m�xima desejada para a �rea de conte�do */
    overflow: auto;
}



#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    display:none;
}

    #loader img {
        margin-left: 45%;
        margin-top: 20%;
        width: 50px;
        height: 50px;
    }

table {
    border-collapse: collapse;
    width: 100%;
}

thead {
    top: 0;
    z-index: 2;
    background-color: #343a40; /* Fundo escuro para contraste */
    color: white;
    border-bottom: 2px solid #dee2e6;
}

tbody tr:hover {
    background-color: rgba(0, 123, 255, 0.1); /* Destaque ao passar o mouse */
}

.btn-primary,
.btn-success {
    border-radius: 5px;
    font-size: 0.9rem;
}

.table {
    margin-top: 20px;
}

    .table th,
    .table td {
        vertical-align: middle;
    }

.tamplatebutton {
    height: 40px;
    border-radius: 10px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
}