.results-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    transition: opacity 125ms ease-in-out;

    .results-count {
        padding: 0.5rem 1rem;
        color: #666;
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    .results-list {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    .results-item {
        padding: 1rem;
        background-color: #f5f5f5;
        border-radius: 8px;
        cursor: pointer;

        .results-item-header {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 0.5rem;
            font-size: 0.875rem;
            color: #666;

            .results-code {
                font-weight: bold;
                color: #1976d2;
            }

            .results-language {
                background-color: #e3f2fd;
                padding: 0.125rem 0.5rem;
                border-radius: 4px;
                border: 1px solid rgba(0, 0, 0, 0.25);
                font-weight: 500;
                transform: translateY(-3px); /* TODO: Relational to the "actual" font size? */
            }

            .results-playtime {
                margin-left: auto;
            }
        }

        .results-title {
            font-size: 1.125rem;
            font-weight: bold;
            margin-bottom: 0.25rem;
            color: #1a1a1a;
        }

        .results-artist {
            font-size: 1rem;
            color: #555;
            margin-bottom: 0.5rem;
        }

        .results-note {
            font-size: 0.875rem;
            color: #d32f2f;
            margin-top: 0.5rem;
            margin-left: -0.5rem;
            margin-right: -0.5rem;
            padding: 0.5rem;
            background-color: #ffebee;
            border-radius: 4px;
        }

        .results-alternates {
            font-size: 0.875rem;
            color: #666;
            margin-top: 0.5rem;
            font-style: italic;
        }
    }
}

.results-empty-state {
    padding: 3rem;
    text-align: center;
    color: #999;
    font-size: 1.125rem;
}
