/* For Desktop View */
.desktop-view {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 2px solid #b9b7b7;
    margin: 10px 0;
}

.desktop-view .audio-row {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #ddd;
}

.desktop-view .audio-cell {
    flex: 1;
    padding: 10px;
    border-right: 1px solid #ddd;
}

.desktop-view .audio-cell:last-child {
    border-right: none;
}

.desktop-view .audio-cell.header {
    background-color: #f4f4f4;
    font-weight: bold;
    text-align: center;
}

.desktop-view .explanation .audio-cell {
    flex-basis: 100%;
    border-bottom: none;
    background-color: #f9f9f9;
}

.desktop-view audio {
    width: 100%;
}

/* Mobile View */
.mobile-view {
    display: none;
    width: 100%;
    border: 2px solid #b9b7b7;
    margin: 10px 0;
}

.mobile-view .audio-row {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #ddd;
}

.mobile-view .audio-cell {
    width: 100%;
    padding: 10px;
    border-right: none;
}

.mobile-view .audio-cell.header {
    background-color: #f4f4f4;
    font-weight: bold;
    text-align: left;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .desktop-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }
}

@media (min-width: 769px) {
    .desktop-view {
        display: block;
    }

    .mobile-view {
        display: none;
    }
}