.styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.styled-table thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
}
.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
}
.styled-table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
}

.faviconpic {
  width: 24px;
  height: 24px;
}

.profilepic {
  width: 40px;
  height: 40px;
}

editor-column {
  float: left;
  width: 50%;
}
/* Clear floats after the columns */
editor-row:after {
  content: "";
  display: table;
  clear: both;
}

div.columns       { width: 100%; }
div.columns div   { height: 100%; float: left; }
div.columnleft    { width: 30%; }
div.columnright   { width: 70%;}
div.rows          { width: 100%; }
div.rows div      { width: 100%; float: top; } 
div.rowtop        { height: 30%; }
div.rowbottom     { width: 90%; height: 70%;}
div.grey          { background-color: #cccccc; }
div.red           { background-color: #e14e32; }
div.clear         { clear: both; }

#ip2 {
    border-radius: 25px;
    border: 2px solid #609;
    padding: 20px;
    width: 800px;
    height: 15px;
}
.resizable {
    display: block;
    width: 400px;
    height: 400px;
    padding: 30px;
    border: 2px solid gray;
    overflow: hidden;
    position: relative;
}

.testbutton {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  vertical-align: bottom;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 25px;
}

.graybutton {
  background-color: #333333; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  vertical-align: bottom;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 25px;
}

.backbutton {
  background-color: #aabd4e; /* Green */
}

#myInput {
  background-image: url('/assets/images/searchicon.png');
  background-position: 10px 10px;
  background-repeat: no-repeat;
  width: 100%;
  font-size: 16px;
  padding: 12px 20px 12px 40px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
}

#myTable, #newTable{
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #ddd;
  font-size: 14px;
}

#myTable th, #myTable td, #newTable th, #newTable td{
  text-align: left;
  padding: 7px;
}

#myTable tr, #newTable tr{
  border-bottom: 1px solid #ddd;
}

#myTable tr.header, #myTable tr:hover {
  background-color: #f1f1f1;
}

#newTable tr.header, #newTable tr:hover {
  background-color: #f1f1f1;
}

.rowscroll {
  width: 70em;
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
}



