body {
    font-family: Arial, sans-serif;
    margin: 0px;
    background: #f6f6f6;
	padding: 0;
}

#toolbar {
    margin-bottom: 15px;
}

#toolbar button {
    padding: 6px 12px;
    margin-right: 8px;
    cursor: pointer;
}

#status {
    margin-left: 10px;
    font-size: 14px;
    color: #444;
}

#content {
    background: #ffffff;
    padding: 20px;
    min-height: 200px;
    border: 1px solid #ccc;
}

#content[contenteditable="true"] {
    outline: 2px solid #4a90e2;
}

.hidden {
    display: none;
}

/* ================================
   BANK DETAILS TABLE
================================ */

#bank-details {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #222;
}

#bank-details td {
  padding: 9px 12px;
  border: 1px solid #d0d5dd;
  vertical-align: top;
}

#bank-details td:first-child {
  width: 35%;
  font-weight: 600;
  background-color: #fafafa;
}


/* ================================
   SALES TEAM TABLE
================================ */

#sales-team {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #222;
}

#sales-team th {
  background-color: #f2f4f7;
  font-weight: 600;
  text-align: left;
  padding: 10px 12px;
  border: 1px solid #d0d5dd;
}

#sales-team td {
  padding: 9px 12px;
  border: 1px solid #d0d5dd;
  vertical-align: top;
}

#sales-team th:first-child,
#sales-team td:first-child {
  width: 50px;
  text-align: center;
}

#sales-team th:last-child,
#sales-team td:last-child {
  white-space: nowrap;
}

#sales-team tr:nth-child(even) td {
  background-color: #fbfbfb;
}

#sales-team tr:hover td {
  background-color: #f0f6ff;
}


/* ================================
   PRINT OPTIMIZATION
================================ */

@media print {
  #bank-details,
  #sales-team {
    font-size: 12px;
  }

  #sales-team tr:hover td {
    background-color: transparent;
  }
}
