.child-card {
    border-radius: 20px;
    border: none;
    background: linear-gradient(135deg, #f8f9ff, #ffffff);
    transition: transform 0.2s ease;
}

.child-card:hover {
    transform: translateY(-5px);
}

.avatar-circle {
    width: 70px;
    height: 70px;
    background: #e9f2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto;
}

.category-bubble {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.2s ease;
}

.category-bubble:hover {
    transform: scale(1.1);
}

/* Stavy */
.category-bubble.done {
    background-color: #28c76f;
}

.category-bubble.in-progress {
    background-color: #ff9f43;
}

.category-bubble.not-started {
    background-color: #ced4da;
}

/* Tlačítka */
.btn-play {
    background: #4dabf7;
    border: none;
    color: white;
    border-radius: 50px;
    font-weight: bold;
}

.btn-play:hover {
    background: #339af0;
}

.btn-start {
    background: #51cf66;
    border: none;
    color: white;
    border-radius: 50px;
    font-weight: bold;
}

.btn-start:hover {
    background: #40c057;
}


.category-row {
    font-size: 0.9rem;
}

.category-name {
    font-weight: 500;
}

.category-score {
    font-size: 0.85rem;
}

.progress {
    background-color: #e9ecef;
    border-radius: 50px;
}

.progress-bar {
    border-radius: 50px;
    transition: width 0.4s ease;
}
