#quiz-na-gryfie {
    text-align: center;
    max-width: 900px;
    margin: 30px auto;
}
.gryf {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 20px;
}
.fret-slot {
    width: 60px;
    height: 60px;
    background: #eee;
    border: 2px solid #ccc;
    line-height: 60px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
}
.note-bank {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}
.draggable-note {
    padding: 10px 15px;
    background: #ddd;
    border: 2px solid #999;
    font-weight: bold;
    cursor: grab;
}
#check-quiz {
    padding: 10px 20px;
    font-size: 16px;
}
#quiz-result {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
}
