/* Placeholder stylesheet for Lexis SRS */
.ysp-practice-table {
  font-family: sans-serif;
}

.ysp-start-practice-button {
  background-color: #0a9396;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.ysp-start-practice-button:hover {
  background-color: #00767a;
}

@media screen and (max-width: 768px) {
  .ysp-practice-table,
  .ysp-practice-table thead,
  .ysp-practice-table tbody,
  .ysp-practice-table th,
  .ysp-practice-table td,
  .ysp-practice-table tr {
    display: block;
    width: 100%;
  }

  .ysp-practice-table thead {
    display: none;
  }

  .ysp-practice-table td {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    position: relative;
  }

  .ysp-practice-table td::before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #0a9396;
  }
}