/* ==========================================
   Lesson Watch Tracker
========================================== */

.tlwt-watch-tracker {
    margin-top: 24px;
    font-family: inherit;
}

.tlwt-watch-tracker p {
    margin-bottom: 14px;
}

.tlwt-mark-watch-button {
    background: #0D0D0D !important;
    color: #ffffff !important;
    border: 1px solid #0D0D0D !important;
    border-radius: 999px !important;
    padding: 14px 34px !important;
    font-size: 14px !important;
    line-height: 1 !important;
    cursor: pointer;
    transition: all .2s ease;
}

.tlwt-mark-watch-button:hover {
    background: #ffffff !important;
    color: #0D0D0D !important;
}

.tlwt-mark-watch-button:disabled {
    opacity: .6;
    cursor: not-allowed;
}

/* ==========================================
   Workout History
========================================== */

.tlwt-watch-history {
    margin-top: 22px;
    padding: 18px 20px;
    background: #f7f7f7;
    border-radius: 14px;
    max-width: 360px;
}

.tlwt-watch-history strong {
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
}

.tlwt-watch-history ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tlwt-watch-history li {
    position: relative;
    padding: 10px 0 10px 38px;
    border-bottom: 1px solid #e1e1e1;
    font-size: 14px;
}

.tlwt-watch-history li:last-child {
    border-bottom: none;
}

.tlwt-watch-history li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    background: url("/wp-content/uploads/2026/05/Tick.svg") center/contain no-repeat;
}