/* Course Details Page Specific Styles */

.course-details {
    max-width: 50rem;
    margin: 6.25rem auto;
    padding: 2rem;
    background-color: #1f2833;
    border-radius: 0.5rem;
    color: #f4f4f4;
    text-align: left;
}

.course-details h1 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #45a29e;
}

.course-details p {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.course-details h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.course-details h3 {
    color: #66fcf1;
}

.course-details ul {
    list-style: disc inside;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.prerequisites {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: #2d3a45;
    border-radius: 0.5rem;
}

.prerequisites label {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    padding: 0.5rem;
    background-color: #1f2833;
    border: 1px solid #45a29e;
    border-radius: 0.5rem;
    transition: background-color 0.3s, border-color 0.3s;
}

.prerequisites label:hover {
    background-color: #2d3a45;
    border-color: #66fcf1;
}

.prerequisite-checkbox {
    margin-right: 0.5rem;
    width: 1.25rem;
    height: 1.25rem;
    accent-color: #45a29e; /* Set checkbox color */
    cursor: pointer;
}

.prerequisite-checkbox:checked + label {
    background-color: #45a29e;
    color: #fff;
}

.enroll-button {
    padding: 0.75rem 1.5rem;
    background-color: #45a29e;
    color: #fff; /* Changed color to white */
    border: none;
    border-radius: 0.5rem;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.enroll-button:hover {
    background-color: #66fcf1;
}
