.dw-my-courses {
    max-width: 1000px;
    margin: 0 auto;
}

.dw-title {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.dw-course-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.dw-course-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.dw-course-info {
    flex: 1;
}

.dw-course-title {
    margin: 0 0 6px 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.dw-course-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #555;
}

.badge {
    background: #eef2ff;
    color: #3730a3;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.status.completed {
    color: #15803d;
    font-weight: 600;
}

.status.in-progress {
    color: #0369a1;
    font-weight: 600;
}

.status.not-started {
    color: #6b7280;
}

.dw-course-btn {
    background: #2563eb;
    color: #fff;
    padding: 14px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.15s ease;
}

.dw-course-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.dw-progress-bar {
    margin-top: 14px;
    width: 100%;
    height: 10px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

.dw-progress-fill {
    height: 100%;
    transition: width 0.4s ease;
}

/* Estados */
.progress--not-started {
    background: #9ca3af;
}

.progress--in-progress {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
}

.progress--completed {
    background: linear-gradient(90deg, #16a34a, #15803d);
}
