body {
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.normal-container {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);	
}

.login-container {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 10px;
}

label {
    font-weight: bold;
}

input, select {
    width: 80%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

button {
    width: 100%;
    height: 50px;
    padding: 10px;
    background-color: #3F7CCF;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

button:hover {
    background-color: #0069d9;
}

button:focus {
    outline: none;
}

.div_box_list {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  color: #333;
}

.table thead {
  background-color: #f1f1f1;
}

.table th,
.table td {
  padding: 10px;
  text-align: left;
}

.table th {
  font-weight: bold;
}

.table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.table tbody tr:hover {
  background-color: #e1e1e1;
}

#tabla-lista {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

#tabla-lista td, #tabla-lista th {
  border: 1px solid #ddd;
  padding: 8px;
}

#tabla-lista tr:nth-child(even){background-color: #f2f2f2;}

#tabla-lista tr:hover {background-color: #ddd;}

#tabla-lista th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #3F7CCF;
  color: white;
}

.text_controles {
    width: auto;
    padding: 2px;
    border: 1px solid #ccc;
    border-radius: 10px;
}
.save_btn
{
	width: auto;
	background-color:#0C6;
	color:#FFF;
	padding: 7px;
}

.find_btn
{
	width: auto;
	background-color:#D1BD2D;
	color:#FFF;
	padding: 7px;
}

.delt_btn
{
	width: auto;
	background-color:#D1432D;
	color:#FFF;
	padding: 7px;
}

.novo_btn
{
	width: auto;
	background-color:#4C81B0;
	color:#FFF;
	padding: 7px;
}

.rprt_btn
{
	width: auto;
	background-color:#797878;
	color:#FFF;
	padding: 7px;
}

.form_message_bar {
	height: 20px;
	line-height: 45px;
	/*background: #F66060;*/
	padding: 10px;
	border-radius: 3px;
	color:#FFF;
	display: flex;
	align-items:center;
	justify-content: center;	
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: left;
  padding: 5px 5;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
