* {
  box-sizing: border-box; }

#wrapper {
  width: 80%;
  margin: 0 auto; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif; }

.topnav {
  margin-top: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #e9e9e9; }

.topnav a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px; }

.topnav a:hover {
  background-color: #ddd;
  color: black; }

.topnav a.active {
  color: darkblue;
  border-bottom: 5px solid darkblue; }

.topnav .search-container {
  float: right; }

.topnav input[type=text] {
  padding: 6px;
  border-radius: 10px;
  margin-top: 8px;
  margin-right: 10px;
  font-size: 17px;
  border: none; }

.topnav .search-container button {
  float: right;
  padding: 6px 10px;
  margin-top: 8px;
  margin-right: 16px;
  background: #2dc200;
  font-size: 17px;
  border: none;
  cursor: pointer;
  border-radius: 25px;
  color: white; }

.topnav .search-container button:hover {
  background: darkgreen; }

@media screen and (max-width: 600px) {
  .topnav .search-container {
    float: none; }

  .topnav a,
  .topnav input[type=text],
  .topnav .search-container button {
    float: none;
    display: block;
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 14px; }

  .topnav input[type=text] {
    border: 1px solid #ccc; } }
/* Responsive Table */
table {
  width: 100%;
  border-collapse: collapse; }

/* Zebra striping */
tr:nth-of-type(odd) {
  background: #eee; }

th {
  background: #868686;
  color: black;
  font-weight: bold;
  padding: 6px;
  text-align: left; }

td {
  padding: 6px;
  text-align: left;
  border-bottom: 1px solid black; }

@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
  table.dataTable tbody td {
    padding: 8px 0px 0 120px !important; }

  /* Force table to not be like tables anymore */
  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block; }

  /* Hide table headers (but not display: none;, for accessibility) */
  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px; }

  tr {
    border: 1px solid #424242; }

  td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #969696;
    position: relative;
    padding-left: 50%; }

  td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap; }

    /*
	Label the data
	*/
  td:nth-of-type(1):before {
    content: "FirstName"; }

  td:nth-of-type(2):before {
    content: "LastName"; }

  td:nth-of-type(3):before {
    content: "Email"; }

  td:nth-of-type(4):before {
    content: "IsEnabled"; } }

/*# sourceMappingURL=style.css.map */
