/* app/static/css/pages/recently.css */
/* Стили для страницы /recently */

.recently-page {
    background: var(--app-color-bg-body);
    border-radius: var(--app-radius-lg);
    box-shadow: var(--app-shadow-sm);
    padding: var(--app-spacing-lg);
    margin-top: var(--app-spacing-md);
}

.recently-title {
    font-size: 24px;
    font-weight: 600;
    color: #0091ff;
    margin-bottom: var(--app-spacing-lg);
    padding-bottom: var(--app-spacing-sm);
    border-bottom: 2px solid var(--app-color-border);
}

/* Таблица истории — как в оригинале */
#recently-list .main_table {
    width: 100%;
    border-collapse: collapse;
}

#recently-list .main_table tr {
    border-bottom: 1px solid rgba(68, 68, 68, 0.08);
}

#recently-list .main_table tr:last-child {
    border-bottom: none;
}

#recently-list .ff-music-date_played {
    font-size: 14px;
    color: #999;
    padding: 6px 10px 6px 0;
    white-space: nowrap;
    vertical-align: top;
    min-width: 100px;
}

#recently-list .ff-music-artist {
    font-size: 14px;
    font-weight: bold;
    color: #344072;
    padding: 6px 10px 6px 0;
    white-space: nowrap;
    vertical-align: top;
}

#recently-list .ff-music-title {
    color: #8086a0;
    font-size: 14px;
    padding: 6px 0;
    white-space: nowrap;
    vertical-align: top;
}

@media (max-width: 768px) {
    .recently-page {
        padding: var(--app-spacing-md);
    }

    .recently-title {
        font-size: 20px;
    }

    #recently-list .ff-music-date_played {
        font-size: 12px;
        min-width: 70px;
    }

    #recently-list .ff-music-artist {
        font-size: 13px;
    }

    #recently-list .ff-music-title {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .recently-page {
        padding: var(--app-spacing-sm);
    }

    .recently-title {
        font-size: 18px;
    }

    #recently-list .ff-music-date_played {
        font-size: 11px;
        min-width: 60px;
    }

    #recently-list .ff-music-artist {
        font-size: 12px;
    }

    #recently-list .ff-music-title {
        font-size: 12px;
    }
}