body {
  padding: 0;
  margin: 0;
  background: #ecf0f1;
}
body,
input,
select,
textarea {
  font-family: 'Open Sans', Roboto, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #353535;
}
input,
textarea {
  padding: 1em;
  border: 1px solid #ccc;
  border-radius: 2px;
}
input[type="file"] {
  padding: 0.5em;
}
.button {
  cursor: pointer;
  padding: 1em;
  color: #fff;
  border: none;
  background: #353535;
  border-radius: 2px;
  text-align: center;
}
.button--positive {
  background: #22d7f9;
}
.button--positive:hover {
  background: #07d2f8;
}
.button--negative {
  background: #e74c3c;
}
.button--negative:hover {
  background: #c0392b;
}
* {
  transition: all 0.15s ease;
}
h1 {
  font-weight: 300;
}
h2,
h3 {
  font-weight: 400;
}
.title {
  text-align: center;
}
.flex {
  display: flex;
}
.flex--between {
  justify-content: space-between;
}
/* ==========================================================================
   =LOGIN
   ========================================================================== */
.login {
  margin: 0 auto;
  position: relative;
  top: 50vh;
  transform: translateY(-50%);
  max-width: 95%;
  width: 40em;
}
.login input {
  width: 100%;
  background: #fff;
  box-sizing: border-box;
}
/* ==========================================================================
   =DASHBOARD
   ========================================================================== */
.dashboard {
  width: 75em;
  max-width: 95%;
  margin: 0 auto;
  position: relative;
  padding: 2em 3em 4em;
  background: #fff;
}
td,
th {
  padding: 1em;
  border: thin solid #eee;
  background: #fff;
  border-collapse: collapse;
}
td .button,
th .button {
  margin: -0.25em 0;
  display: block;
  padding: 0.25em 0.5em;
}
textarea {
  font-size: 0.75em;
  font-family: 'Source Code Pro', monospace;
  resize: vertical;
  width: 100%;
  min-height: 10em;
}
textarea + button {
  display: block;
}
.table--songs {
  font-size: 0.75em;
  border-collapse: collapse;
}
.table--fixed {
  overflow-x: scroll;
  margin-left: 15em;
}
.table--fixed table {
  width: 300%;
}
.table--fixed tr > td:first-child,
.table--fixed tr > th:first-child {
  background: #fafafa;
  position: absolute;
  width: 13.75em;
  left: 3em;
}
[contenteditable]:focus {
  outline: none;
  background: #eee;
  box-shadow: inset 0 0 2px rgba(0,0,0,0.1);
}
.csv-upload input {
  margin-right: 1em;
}
