@import url('https://fonts.googleapis.com/css?family=Karla|Open+Sans');

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
  padding: 1em;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

body {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  line-height: 1em;
  text-align: center;
  color: #444;
  background: #fff;
}

h1 {
  font-size: 2.5em;
  margin: 1em 0 .5em;
}

h2 {
  font-size: 2em;
  margin-bottom: 1em;
}

em,
strong {
  font-weight: 700;
}

input[type="button"], input[type="submit"] { 
   border: 1px solid #000;
   background-color: #fff;
   padding: 12px 20px;
    -o-transition: background-color .2s ease-in; 
	-moz-transition: background-color .2s ease-in;
	-webkit-transition: background-color .2s ease-in; 
	transition: background-color .2s ease-in;
	color: #000;
	font-size: 1em;
	-webkit-appearance: none;
	margin: 10px;
	margin-left: 0;
}
input[type="button"]:hover, input[type="submit"]:hover {
   background-color: #000;
   color:#fff;
}

#dhcp-leases-table {
	width: 95%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	animation: float 5s infinite;
}

#dhcp-leases-table th {
	font-weight: bold;
	text-align: left;
	vertical-align: middle;
	padding: 5px;
}

#dhcp-leases-table td {
	text-align: left;
	vertical-align: middle;
	padding: 3px;
}

.active {
	color: green;
	text-decoration: none;
}

.inactive {
	color: red;
	text-decoration: none;
}

.internet_restricted {
	color: blue;
	text-decoration: none;
}

#container {
  display:                 flex;
  display:                 -webkit-flex; /* Safari */
  flex-wrap:               wrap;
  -webkit-flex-wrap:       wrap;         /* Safari */
  justify-content:         center;
  -webkit-justify-content: center;       /* Safari */
}

.block {
  width:              500px;
  margin:             10px;        
}




table {
  width: 100%;
  max-width: 1400px;
  border-collapse: collapse;
  border: 1px solid #38678f;
  margin: 10px auto;
  background: white;
}
th {
  background: steelblue;
  height: 15px;
  width: 25%;
  font-weight: lighter;
  text-shadow: 0 1px 0 #38678f;
  color: white;
  border: 1px solid #38678f;
  box-shadow: inset 0px 1px 2px #568ebd;
  transition: all 0.2s;
}
tr {
  border-bottom: 1px solid #cccccc;
}
tr:last-child {
  border-bottom: 0px;
}
td {
  border-right: 1px solid #cccccc;
  padding: 3px;
  transition: all 0.2s;
}
td:last-child {
  border-right: 0px;
}