/* hashtags.css */
.page-hashtags {
    margin: 70px 0 0 0;
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
    border-top: 2px solid #d4af37;
}
.page-hashtags a {
    display: inline-block;
    color: #333;
    text-decoration: none;
    margin: 5px 8px;
    padding: 8px 16px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}
.page-hashtags a:hover {
    background: #d4af37;
    color: white;
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.2);
}