/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 16/02/2023, 08:48:35
    Author     : BRUNO
*/
*{
    margin: 0;
    padding: 0;
}
#lista-display{
    border: 1px #dcdcdc solid;
    background-color: #fff;
    width: 95%;
    padding: 20px;
    margin: 20px auto;
    border-collapse: collapse;
}
#lista-display th{
    height: 45px;
    background-color: #0099cc;
    color: #fff;
}
#lista-display td{
    height: 45px;
    text-align: center;
    
}
#lista-display td h2{
    line-height: 65px;
    text-align: center;
    
}
.bt{
    background-color: #28a745;
    color: #fff;
    border: none;
    width: 100px;
    height: 30px;
    border-radius: 3px;
}
.tr:hover{
    border: 1px #194574 solid;
}