.bets-dashboard, .bets-courses {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.dashboard-grid, .courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.dashboard-card, .course-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.course-info h3 {
    margin: 10px 0;
    font-size: 1.2rem;
}

.instructor, .price {
    color: #666;
    margin: 5px 0;
}

.course-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.bets-btn {
    display: inline-block;
    padding: 10px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.bets-btn:hover {
    transform: translateY(-2px);
}

.enroll-btn {
    background: #28a745;
}

.enroll-btn:hover {
    background: #218838;
}

.enrolled {
    background: #6c757d;
    cursor: not-allowed;
}

.progress-bar {
    background: #e9ecef;
    border-radius: 10px;
    height: 8px;
    margin: 10px 0;
}

.progress-fill {
    background: linear-gradient(90deg, #28a745, #20c997);
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.points {
    font-size: 2rem;
    font-weight: bold;
    color: #007bff;
}

.badges-display .badge {
    display: inline-block;
    background: #ffc107;
    color: #000;
    padding: 4px 8px;
    border-radius: 12px;
    margin: 2px;
    font-size: 0.8rem;
}

.certificate-item {
    border: 1px solid #ddd;
    padding: 10px;
    margin: 10px 0;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .dashboard-grid, .courses-grid {
        grid-template-columns: 1fr;
    }
    .course-actions {
        flex-direction: column;
    }
}