/* 1. HIDE THE 'START A COURSE' LINK COMPLETELY */
.sensei-user-dashboard .info a, 
.sensei-no-courses-message a,
div.info a[href*="/courses/"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* 2. REMOVE THE 'MY MESSAGES' LINK (Optional) */
.sensei-user-dashboard a.sensei-messages-link {
    display: none !important;
}

/* 3. HIDE THE 'COURSES' TITLE ON THE PUBLIC ARCHIVE PAGE */
.post-type-archive-course .page-title, 
.post-type-archive-course .sensei-course-container {
    display: none !important;
}

/* --- GLOBAL LINK STYLING --- */

/* 1. WIPE OUT UNDERLINES EVERYWHERE (Including Buttons) */
a, a:visited, a:hover, a:focus, a:active {
    text-decoration: none !important;
    text-decoration-line: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background-image: none !important;
}

/* --- PREVENT COPYING ONLY ON SENSEI COURSES, LESSONS & QUIZZES --- */
.single-course, 
.single-lesson, 
.single-quiz {
    -webkit-user-select: none !important; /* Safari */
    -moz-user-select: none !important; /* Firefox */
    -ms-user-select: none !important; /* Internet Explorer/Edge */
    user-select: none !important; /* Standard */
}

@media print {
    /* Hide the entire lesson content area */
    .sensei-container, .course, .lesson, #main {
        display: none !important;
    }
    /* Optional: Show a message instead */
    body::after {
        content: "Printing is disabled for this course material.";
        font-size: 20px;
        color: red;
    }
}

/* Prevent selection and "touch" events on Sensei Lessons */
.single-lesson .sensei-container {
    user-select: none; /* Prevents highlighting text */
    -webkit-user-select: none;
    pointer-events: none; /* Makes the area 'unclickable' */
}

/* Re-enable pointer events for buttons so students can still progress */
.sensei-container .course-completion-rate,
.sensei-container .lesson-button,
.sensei-container a {
    pointer-events: auto;
}