.btn-modern {
    background-color: #3b78c2 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    border-radius: 6px !important;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: inline-block;
    white-space: nowrap;
    width: auto;
    max-width: 100%;
    margin: 0 8px; /* Espaçamento padrão entre os botões */
}

.btn-modern:hover {
    background-color: #82aee0 !important;
    color: #000;

}
.btn-modern-edit{
    background-color: #fcd34d !important;
    color: #000 !important;
    border: none !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    border-radius: 6px !important;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: inline-block;
    white-space: nowrap;
    width: auto;
    max-width: 100%;
    margin: 0 8px; /* Espaçamento padrão entre os botões */
}

.btn-modern-edit:hover{
    background-color: #fbbf24 !important;
    color: #000 !important;
}
.btn-modern-delet{
    background-color: #920c03 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    border-radius: 6px !important;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: inline-block;
    white-space: nowrap;
    width: auto;
    max-width: 100%;
    margin: 0 8px; /* Espaçamento padrão entre os botões */
}
.btn-modern-delet:hover{
    background-color: #c0392b !important;
    color: #ffffff !important;
    
}
/* Ajuste para celulares */
@media (max-width: 480px) {
    .btn-modern {
        padding: 8px 12px !important;
        font-size: 0.85rem !important;
        width: 100%;
        margin: 8px 0; /* EspaÃ§amento vertical entre botÃµes */
    }
}
/* Ajuste para celulares */
@media (max-width: 810px) {
    .btn-modern {
        padding: 8px auto !important;
        font-size: 0.85rem !important;
        width: 100%;
        margin: 8px 0; /* EspaÃ§amento vertical entre botÃµes */
    }
}
/* Ajuste para celulares */
@media (max-width: 1129px) {
    .btn-modern {
        padding: 8px auto !important;
        font-size: 0.85rem !important;
        width: 100%;
        margin: 8px 0; /* EspaÃ§amento vertical entre botÃµes */
    }
}


i{
    font-size: 14px;
}

.btn-modern-secondary {
    background-color: #4dd37c;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 6px;
    font-weight: bold;
}

.btn-modern-secondary:hover {
    background-color: #028638;
    color: #ffffff;

    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transform: scale(1.03);
}

.btn-icon-modern i {
    margin-right: 10px;
    font-size: 1.5rem;
    vertical-align: middle;
}
.btn-custom-primary {
    background-color: #084F8C;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    transition: 0.3s ease;
}

.btn-custom-secondary {
    background-color: #03A64A;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    transition: 0.3s ease;
}

.btn-custom-primary:hover {
    background-color: #063B6A;
    color: #e5e5e5;
}

.btn-custom-secondary:hover {
    background-color: #02853A;
    color: #e5e5e5;
}

.btn-custom-save {
    background-color: #03A64A;
    color: #e5e5e5;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    padding: 0.75rem 1.5rem;
    transition: 0.3s ease;
}

.btn-custom-save:hover {
    background-color: #02853A;
    color: rgb(217, 226, 216);
}

/* Estilos do botão principal */
.dropdown-btn {
    background-color: #376597;
    color: white;
    padding: 10px 15px;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* Estilos do container do dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Estilos do conteúdo do dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    border-radius: 6px;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    left: 0;
    top: 45px;
}

/* Exibir o menu quando ativo */
.show {
    display: block !important;
}

/* Estilos dos itens do menu */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-radius: 6px;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Estilos do submenu */
.dropdown-submenu {
    position: relative;
}

.submenu-content {
    display: none;
    position: absolute;
    top: 0;
    right: 100%;
    left: auto; /* Posiciona ao lado do item "Cadastro" */
    background-color: #f9f9f9;
    border-radius: 6px;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.submenu-content a {
    padding: 10px 14px;
    display: block;
}

.dropdown-submenu:hover .submenu-content {
    display: block;
}

/* Setinha do submenu */
.submenu-btn {
    display: block;
    padding: 12px 16px;
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.submenu-btn:hover {
    background-color: #f1f1f1;
}
.show {
    display: block !important;
}

/* botão paginação ativa */
.pagination .active {
    color: rgb(0, 0, 0) !important; /* Cor do texto */
    font-weight: bold; /* Deixa o número mais destacado */
    border-radius: 5px; /* Borda arredondada */
}

.botao-branco {
color: white !important; /* Cor do texto */
}
.btn-modern-note {
     background-color: #A084E8 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    border-radius: 6px !important;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: inline-block;
    white-space: nowrap;
    width: auto;
    max-width: 100%;
    margin: 0 8px;
}

.btn-modern-note:hover {
    background-color: #7559da !important;
}


.btn-modern-voltar {
     background-color: #339208 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    border-radius: 6px !important;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: inline-block;
    white-space: nowrap;
    width: auto;
    max-width: 100%;
    margin: 0 8px;
}

.btn-modern-voltar:hover {
    background-color: #235e07 !important;
}



        .btn-visualizar {
    display: inline-block;
    padding: 6px 12px;
    font-size: 14px;
    color: #444;
    background-color: #f3f3f3;
    border: 1px solid #3d3c3c;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-visualizar:hover {
    background-color: #3b78c2;
    color: #fff;
    border-color: #3b78c2;
}

.btn-excluir-suave {
  background-color: #f44336;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.btn-excluir-suave:hover {
  background-color: #d32f2f;
  transform: scale(1.05);
}

.btn-excluir-suave:active {
  transform: scale(0.95);
}



.card-nota {
  border: 2px solid #000; /* borda preta */
  border-radius: 6px;
  padding: 15px;
  background-color: #f9f9f9;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-nota img {
  max-height: 150px;
  object-fit: contain;
  border: 1px solid #ccc;
  background: #fff;
}

.card-nota .descricao-nota {
  font-weight: 600;
  font-size: 16px;
  color: #333;
  min-height: 50px;
  margin: 8px 0;
}

.card-nota .botoes-nota {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
