/* 
 * TiniPorn - Modern Dutch Adult Video Site
 * Entries page specific styles
 */

/* Related Tags Section */
.related-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
}

.tag-link {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--card-bg, #1e1e1e);
    color: var(--text-color, #f8f9fa);
    border-radius: 50px;
    font-size: 0.85rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid var(--border-color, #343a40);
}

.tag-link:hover {
    background-color: var(--primary-color, #ff6600);
    color: white;
}

/* Sort Options */
.sort-options {
    display: flex;
    gap: 0.5rem;
}

.sort-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background-color: var(--card-bg, #1e1e1e);
    color: var(--text-color, #f8f9fa);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color, #343a40);
}

.sort-button:hover {
    background-color: var(--primary-color, #ff6600);
    color: white;
}

.sort-button.selected {
    background-color: var(--primary-color, #ff6600);
    color: white;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem 1rem;
    background-color: var(--card-bg, #1e1e1e);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.no-results p {
    margin-bottom: 1rem;
    color: var(--text-color, #f8f9fa);
}

.no-results p:first-child {
    font-size: 1.25rem;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .sort-options {
        width: 100%;
        justify-content: flex-start;
    }
    
    .sort-button {
        flex: 1;
        text-align: center;
    }
}
