.ctable-container {
  position: relative;
  display: flex;
  overflow: auto;

  flex-direction: column;

  width: 100%;

  padding: 20px 20px;
}

.ctable {
  position: relative;
  overflow: hidden;

  width: 100%;

  border-collapse: collapse;

  text-align: right;

  border-radius: 12px;

  background: rgba(255, 255, 255, 1);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.ctable thead th,
.ctable tbody td {
  padding: 10px 20px;

  white-space: nowrap;

  font-size: 14px;
}

.ctable thead th {
  padding-top: 15px;
  padding-bottom: 15px;

  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.ctable tbody tr {
  transition: 0.3s all ease-out;
}

.ctable tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.03);
}

.ctable tbody tr:hover {
  background: rgba(0, 0, 0, 0.05);
}
