/**
 * AudioCoach Client Dashboard Styling
 * Extra styling voor het client dashboard
 */

/* Client dashboard header styling */
.audiocoach-client-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.audiocoach-client-info {
    flex: 1;
}

.audiocoach-client-name {
    font-weight: 600;
    font-size: 16px;
}

.audiocoach-client-actions {
    margin-left: 20px;
}

/* LOG UIT knop styling voor client dashboard */
.audiocoach-client-actions .audiocoach-btn {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    transition: background-color 0.2s;
}

.audiocoach-client-actions .audiocoach-btn:hover:not([disabled]) {
    text-decoration: none;
    opacity: 0.9;
}

/* Professional info styling in prof dashboard */
.audiocoach-professional-info {
    margin-left: 20px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

/* Responsive design voor kleinere schermen */
@media screen and (max-width: 768px) {
    .audiocoach-client-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .audiocoach-client-actions {
        margin-left: 0;
        width: 100%;
    }
    
    .audiocoach-client-actions .audiocoach-btn {
        width: 100%;
        text-align: center;
    }
}