@charset "iso-8859-1";
/* CSS Document */


input[type=text], input[type=password], input[type=number] {
    width: 100%;
    padding: 6px 10px;
    margin: 4px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

input[type=submit] {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 7px 10px;
    margin: 4px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #45a049;
}


<!-- Menu Vertical>

.vertical-menu {
    width: 200px; /* Set a width if you like */
}

.vertical-menu a {
    background-color: #eee; /* Grey background color */
    color: black; /* Black text color */
    display: block; /* Make the links appear below each other */
    padding: 12px; /* Add some padding */
    text-decoration: none; /* Remove underline from links */
}

.vertical-menu a:hover {
    background-color: #ccc; /* Dark grey background on mouse-over */
}

.vertical-menu a.active {
    background-color: #4CAF50; /* Add a green color to the "active/current" link */
    color: white;
}


<!-- Tabelas padrao "customers" -->

#customers {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
	border-collapse: collapse;
}

#customers td, #customers th {
	font-family: Arial, Helvetica, sans-serif;
    border: 1px solid #ddd;
    padding: 4px;
}

#customers tr:nth-child(even){background-color: #f2f2f2;}

#customers tr:hover {
    font-family: Arial, Helvetica, sans-serif;
	background-color: #ddd;
}

#customers th {
	font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;

    background-color: #4CAF50;
    color: white;
}





<!-- Tabelas padrao "Pagamentos" -->

#pagamento {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
	border-collapse: collapse;
}

#pagamento td, #pagamento th {
    border: 1px solid #ddd;
    padding: 2px;
}

#pagamento tr:nth-child(even){background-color: #f2f2f2;}

#pagamento tr:hover {background-color: #ddd;}

#pagamento th {
    padding-top: 2px;
    padding-bottom: 2px;

    background-color: #4CAF50;
    color: white;
}



<!-- Menu Sidebar Dropdown -->

/* Fixed sidenav, full height */
.sidenav {
  height: 100%;
  width: 200px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #EEEEEE;
  overflow-x: hidden;
  padding-top: 20px;
}

/* Style the sidenav links and the dropdown button */
.sidenav a, .dropdown-btn {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 20px;
  color: #000;
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}

/* On mouse-over */
.sidenav a:hover, .dropdown-btn:hover {
 color: #000;
  background-color: #ccc;
}

/* Main content */
.main {
  margin-left: 200px; /* Same as the width of the sidenav */
  font-size: 20px; /* Increased text to enable scrolling */
  padding: 0px 10px;
}

/* Add an active class to the active dropdown button */
.active {
  background-color: green;
  color: white;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
  display: none;
  background-color: #EEEEEE;
  padding-left: 8px;
}

/* Optional: Style the caret down icon */
.fa-caret-down {
  float: right;
  padding-right: 8px;
}

/* Some media queries for responsiveness */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

/*Fim Sidebar Dropdown*/




