/* app/static/css/layout/sidebar.css */
/* Стили для сайдбара "Только что играло" */

#recentsongs {
    width: 100%;
    overflow: hidden;
}

#recentsongs .wrapper {
    width: 100%;
}

.history-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.history-row {
    display: flex;
    flex-direction: column;
    padding: 4px 0;
    border-bottom: 1px solid rgba(68, 68, 68, 0.08);
    width: 100%;
}

.history-row:last-child {
    border-bottom: none;
}

.history-artist {
    font-size: 14px;
    font-weight: bold;
    color: #344072;
    word-break: break-word;
}

.history-title {
    color: #8086a0;
    font-size: 14px;
    font-weight: normal;
    word-break: break-word;
}

/* Адаптивность */
@media (max-width: 768px) {
    .history-artist {
        font-size: 13px;
    }

    .history-title {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .history-artist {
        font-size: 12px;
    }

    .history-title {
        font-size: 12px;
    }
}