/* Import the parent theme's styles */
/* @import url("../twentytwentyfive/style.css"); */

/* Add your custom styles below */
/* Course Details Container */
#course-details-container {
    margin-top: 20px;
}

/* Loading State */
.course-loading {
    padding: 20px;
    text-align: center;
    background: #f0f0f0;
    border-radius: 4px;
    color: #666;
}

/* Course Card */
.course-details-card {
    padding: 20px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.course-details-card h3.course-title {
    margin-top: 0;
    color: #333;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.course-details-card p {
    margin: 10px 0;
    color: #555;
}

.course-details-card strong {
    color: #000;
}

/* Error State */
.course-error {
    padding: 15px;
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 4px;
    color: #c33;
}

/* Schedule List */
.course-schedule ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
    font-size: 18px;
    color: #666;
}

.course-schedule li {
    padding: 5px 10px;
    border-bottom: 1px solid #eee;
}

.course-schedule li:last-child {
    border-bottom: none;
}

.lesson-calendar-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.lesson-item {
    padding: 12px;
    margin-bottom: 10px;
    background: #f5f5f5;
    border-left: 3px solid #007bff;
    border-radius: 4px;
}

.lesson-item:last-child {
    margin-bottom: 0;
}