/* Wrapper */
.dostart-wrapper {
  max-width: 1080px;
  margin: 40px auto;
  padding: 24px 28px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
}

/* Title */
.dostart-title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #111111;
}

/* Table */
.dostart-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
}

/* Header */
.dostart-table thead th {
  text-align: left;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8e8e93;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Rows */
.dostart-table tbody td {
  padding: 12px 14px;
  font-size: 14px;
  color: #1c1c1e;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.dostart-row:nth-child(2n) td {
  background-color: #fafafa;
}

.dostart-row:hover td {
  background-color: #f2f2f7;
}

/* Status-Dot */
.dostart-status-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

/* iOS-ähnliche Farben */
.dostart-status-red {
  background-color: #ff3b30;
}

.dostart-status-yellow {
  background-color: #ffcc00;
}

.dostart-status-green {
  background-color: #34c759;
}

.dostart-row-hover td {
  transition: background-color 0.15s ease-out;
}

.dostart-row-selected td {
  background-color: #d1e3ff !important;
}



/* Responsive */
@media (max-width: 768px) {
  .dostart-wrapper {
    margin: 16px;
    padding: 16px 14px;
  }

  .dostart-title {
    font-size: 18px;
  }

  .dostart-table thead {
    display: none;
  }

  .dostart-table,
  .dostart-table tbody,
  .dostart-table tr,
  .dostart-table td {
    display: block;
    width: 100%;
  }

  .dostart-row {
    margin-bottom: 10px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
  }

  .dostart-table tbody td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }

  .dostart-table tbody td::before {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8e8e93;
    margin-bottom: 2px;
  }

  .dostart-table tbody td:nth-child(1)::before {
    content: "Datum";
  }

  .dostart-table tbody td:nth-child(2)::before {
    content: "Name";
  }

  .dostart-table tbody td:nth-child(3)::before {
    content: "Status";
  }

  .dostart-table tbody td:nth-child(4)::before {
    content: "Betrag";
  }
}
