/**
 * @file
 * Table styles for views and dashboards.
 */

table {
  margin-bottom: 20px;
}

table th {
  background: #f5f5f5;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #282828;
  padding: 12px 15px;
  text-align: left;
  border-bottom: 2px solid #ddd;
}

table td {
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}

table tbody tr:hover {
  background: #fafafa;
}

/* Responsive table wrapper */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Views tables */
.views-table th a {
  color: #282828;
  text-decoration: none;
}

.views-table th a:hover {
  color: #1a73e8;
}

/* Striped rows */
table.sticky-header {
  z-index: 10;
}
