.tag_cloud_container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 10px 0;
    font-family: inherit;
    color: #ffffff;
}

.tag_bubble_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tag_bubble {
    display: inline-block;
    padding: 6px 12px;
    background-color: #1a1a1a;
    border: 1px solid #022435;
    border-radius: 4px;
    color: #00ceff;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Gewichtung der Tag-Größen */
.tag_bubble.tag_large {
    font-size: 16px;
    font-weight: bold;
    color: #ffbf00;
    border-color: #894600;
}

.tag_bubble.tag_medium {
    font-size: 14px;
    color: #ff9af2;
}

.tag_bubble.tag_small {
    font-size: 12px;
    color: #00aaff;
}

.tag_bubble:hover {
    background-color: #000;
    color: #ffff00;
    border-color: #ffff00;
}

.tag_count {
    font-size: 14px;
    /* opacity: 0.7; */
    color: #00c2ff;
}

/* Ansicht für gefilterte Beiträge untereinander */
.tag_filter_header {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tag_highlight {
    color: #ffbf00;
}

.tag_back_btn {
    color: #ff8800;
    text-decoration: none;
    font-size: 14px;
}

.tag_back_btn:hover {
    text-decoration: underline;
}

.tag_posts_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tag_post_item {
    background-color: #121212;
    border: 1px solid #022435;
    padding: 12px 15px;
    border-radius: 4px;
}

.tag_post_meta {
    font-size: 11px;
    color: #ffbf00;
    font-family: monospace;
    margin-bottom: 5px;
}

.tag_post_link {
    font-size: 14px;
    font-weight: bold;
    color: #ff9af2;
    text-decoration: none;
    display: block;
}

.tag_post_link:hover {
    color: #ffff00;
    text-decoration: underline;
}

/* Mobile Optimierung: Da bricht garantiert nichts mehr rechts aus */
@media (max-width: 768px) {
    .tag_bubble_wrapper {
        gap: 8px;
    }
    
    .tag_filter_header {
        flex-direction: column;
        align-items: flex-start;
    }
}