body{
    background-color: #15161D;
}
.container-admin-banner{
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 80px 0px 20px;
}

.logo-admin{
    width: 400px;
}

h2{
    font-size: 24px;
}

.container-table{
    display: flex;
    align-items: center;
    flex-direction: column;
}

table{
    width: 90%;
    margin: auto 0;
}
table, th, td{
    border: 1px solid #423f3c;
}

table th{
    padding: 11px 0 11px;
    background-color: #191717;
    color: #c4c4c4;
    font-weight: bold;
    font-size: 18px;
    text-align: left;
    padding: 8px;
}

table tr{
    border: 1px solid #ddd;
}
table tr th a{
    color: #c4c4c4;
    text-decoration: none;
}

table td{
    color: #FFF;
    font-size: 18px;
    padding: 8px;
    vertical-align: middle;
}
.container-admin-banner h1{
    margin-top: 40px;
    font-size: 30px;
    color: #ffffff;
}

.container-lista-produtos{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: auto 0;
}

.container-lista{
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: solid #EBC181 0.5px;
    border-radius: 10px;
    padding: 10px;
    margin: 3px 0;
}

.container-lista h3{
    color: #FFFFFF;
    font-weight: 600;
    font-size: 20px;
}

table tbody tr td a, .botao-cadastrar, .botao-excluir{
    padding: 3px 10px;
    border-radius: 10px;
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 5px;
    transition: 0.7s;
    border: none;
    font-size: 18px;
}


table tbody tr td a:hover, .botao-cadastrar:hover, .botao-excluir:hover{
    cursor: pointer;
    filter: saturate(150%);
}

.botao-cadastrar{
    background: #44AA35;
    color: #fff;
    font-weight: 600;
    margin-top: 20px;
    font-size: 20px;
    border-radius: 10px;
    padding: 15px 10px;
    border: none;
}


.botao-editar{
    background: #423f3c;
}

.botao-excluir{
    background: rgb(220, 20, 20);
}

form input{
    border-radius: 10px;
    border: 3px solid #333B1E;
    padding: 10px;
    margin-bottom: 10px;
    transition: 0.5s;
}

form input:focus{
    border-color:3px solid #b11717;
}

.bg-dark{
    background-color: #1E1F29 !important; 
}

/*----------------------------*\
	Search
\*----------------------------*/

.header-search {
    padding: 30px 0px 10px 0px;
  }
  
  .header-search form {
    position: relative;
  }
  
  .header-search form .input-select {
    margin-right: -4px;
    border-radius: 40px 0px 0px 40px;
  }
  
  .header-search form .input {
    width: calc(100% - 225px);
    margin-right: -4px;
    border-radius: 40px 0px 0px 40px;
    padding-left: 15px;
  }
  
  .header-search form .search-btn {
    height: 40px;
    width: 100px;
    background: #44AA35;
    color: #FFF;
    font-weight: 700;
    border: none;
    border-radius: 0px 40px 40px 0px;
  }

  .input-select {
    padding: 0px 0px 0px 10px;
    background: #FFF;
    border: 1px solid #E4E7ED;
    height: 40px;
  }
  .input {
    height: 40px;
    padding: 0px 0px 0px 5px;
    border: 1px solid #E4E7ED;
    background-color: #FFF;
    width: 100%;
  }