:root {
    --background: #13212c;
    --primary: white;
    --secondary: #7d8991;
    --dark-background: #1d384b;
    --functional: #94a3b8;
}

.thread__corner {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    color: #8e8e8e
}

.thread__corner img {
    padding: 10px;
    display: inline-flex;
    width: 32px;
    height: 32px;
    filter: invert(1) brightness(2);
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--dark-background);
    -webkit-font-smoothing: antialiased;
    color: var(--primary);
    font-variation-settings: "wdth" 100;
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.tweet-content {
    flex: 1;
    min-width: 0;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: var(--background);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.header__flex-grid {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 32px;
}

.header__spacer-left {
    flex: 1;
    min-width: 0;
}

.header__spacer-right {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.avatar-dropdown-container {
    position: relative;
}

.avatar-dropdown-container .avatar {
    cursor: pointer;
    transition: opacity 0.2s;
}

.avatar-dropdown-container .avatar:hover {
    opacity: 0.8;
}

.avatar-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    z-index: 1001;
    overflow: hidden;
}

.avatar-dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--primary);
    text-decoration: none;
    transition: background-color 0.2s;
    border-bottom: 1px solid var(--border);
}

.avatar-dropdown-menu .dropdown-item:last-child {
    border-bottom: none;
}

.avatar-dropdown-menu .dropdown-item:hover {
    background-color: var(--border);
}

.avatar-dropdown-menu .dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--secondary);
}

.avatar-dropdown-menu .dropdown-item span {
    flex: 1;
}

/* Author Profile Header */
.author-profile-header {
    margin-bottom: 20px;
}

button {
    outline: none;
    border: none;
}

input {
    outline: none;
    border: none;
}

.author-profile-cover {
    height: 60px;
    background: #94a3b8;
}

.author-profile-info {
    padding: 0 20px 20px;
    position: relative;
    background-color: #94a3b8;
}

.author-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--surface);
    overflow: hidden;
    margin-top: -50px;
    margin-bottom: 12px;
    background: var(--surface);
}

.author-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 8px 0;
    color: black;
}

.author-bio {
    color: black;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.4;
}

.author-stats {
    display: flex;
    gap: 20px;
    color: black;
    font-size: 14px;
}

.author-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.author-stats i {
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .author-profile-header {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}

.header__tabs {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0 auto;
}

.header_logo {
    height: 30px;
    display: flex;
    align-items: center;
}

.header_logo img {
    height: 100%;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.create-post-form {
    padding-left: 5px;
    display: grid;
    row-gap: 1px;
    grid-template-columns: auto 32px;
    grid-template-rows: 20px auto auto 20px 20px;
    grid-template-areas:
        "header sidemenu"
        "main main"
        "image image"
        "time time"
        "footer footer";
}

.secondary {
    order: 1;
    font-weight: bold;
}

.tab-link:hover {
    color: #ccc;
}

.tab-link.active {
    color: #fff;
}

.tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
}

.daily-layout {
    min-height: 100vh;
    background-color: var(--background);
    padding-top: 60px;
}

.daily-main {
    width: 100%;
    padding: 20px;
}

.daily-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 640px);
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
}

.daily-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    break-inside: avoid;
    margin-bottom: 0;
}

.daily-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .daily-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 16px;
    }

    .daily-main {
        padding: 16px 0;
    }

    .header {
        padding: 0 16px;
    }

    .header__flex-grid {
        gap: 16px;
    }

    .header__tabs {
        gap: 1rem;
    }

    .tab-link {
        font-size: 14px;
        padding: 6px 0;
    }

    /* Mobile auth buttons adjustments */
    .auth_buttons {
        gap: 6px;
    }

    .auth-btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    .auth-btn span {
        display: none;
        /* Hide text on mobile, show only icons */
    }

    .auth-btn i {
        font-size: 14px;
    }

    /* Mobile floating editor adjustments */
    #floatingEditor {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
    }

    #floatingBtn {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    /* Mobile composer adjustments */
    .composer__form {
        padding: 16px;
    }

    .user-input {
        padding: 12px 16px;
        max-width: 100%;
    }

    .composer__actions {
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .composer__inputs {
        gap: 8px;
    }

    .actionBase {
        padding: 8px;
        font-size: 14px;
    }

    /* Hide scroll bars on mobile */
    * {
        scrollbar-width: none !important;
        /* Firefox */
        -ms-overflow-style: none !important;
        /* IE and Edge */
    }

    *::-webkit-scrollbar {
        display: none !important;
        /* Chrome, Safari, Opera */
    }

    #floatingEditor {
        overflow-y: auto !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        -webkit-overflow-scrolling: touch;
    }

    #floatingEditor::-webkit-scrollbar {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .daily-grid {
        grid-template-columns: repeat(auto-fill, 640px);
        gap: 24px;
    }
}

.composer__submit:hover {
    opacity: 0.9;
}

.composer__inputs {
    display: flex;
    align-items: center;
    gap: 5px;
}

.composer__select {
    background-color: var(--surface);
    color: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px;
    font-size: 14px;
}

.composer__image-upload {
    display: inline-flex;
    align-items: center;
    color: grey;
    justify-content: center;
    width: 33px;
    height: 33px;
    border-radius: 8px;
    background-color: var(--surface);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: background-color 0.2s;
}

.composer__image-upload:hover {
    background-color: var(--border);
}

.composer__image-input {
    display: none;
    color: #8e8e8e;
}

#entityDynamicInput::placeholder {
    font-size: 15px;
}

.composer__image-preview {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-height: 120px;
    overflow-y: auto;
}

.composer__image-preview .thread__image {
    position: relative;
    width: 80px;
    height: 80px;
}

.composer__image-preview .thread__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.composer__image-preview .thread__image .remove-image {
    position: absolute;
    top: 4px;
    left: 4px;
    right: auto;
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.image-preview-container {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.image-preview-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.image-preview-container .remove-image {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.image-preview-container .remove-image:hover {
    background: #cc0000;
}

.name {
    font-weight: normal;
    font-size: 15px;
    color: var(--secondary);
}

/* Thread */
.thread {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 8px;
    border-bottom: 1px solid var(--border);
    background-color: #141317;
}

.message-content .avatar {
    flex-shrink: 0;
    margin-right: 0;
}

.threads {
    max-width: 640px;
    margin: 0 auto;
    background-color: var(--background);
    display: flex;
    flex-direction: column;
}

.tweet:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.thread__avatar {
    width: 40px;
    height: 40px;
    border-radius: 20%;
    object-fit: cover;
    float: left;
    margin-right: 0.75rem;
}

.thread__author {
    flex: 1;
}

.container {
    display: flex;
    align-content: flex-end;
}

.input_with_tick {
    display: flex;
    color: var(--functional);
    gap: 8px;
}

.thread__timestamp {
    color: var(--primary);
}

.thread__content {
    margin-bottom: 10px;
}

.post-link {
    color: #1d9bf0;
    text-decoration: none;
}

.post-link:hover {
    text-decoration: underline;
}

.thread__appeal {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--surface);
    border-radius: 16px;
    padding: 4px 12px;
    margin-bottom: 12px;
}

.thread__appeal-icon {
    width: 16px;
    height: 16px;
}

.thread__appeal-text {
    color: var(--secondary);
    font-size: 14px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.response-message {
    color: #4CAF50;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
}

.loading {
    opacity: 0.7;
    pointer-events: none;
}

.no-whinges {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 2rem;
}

.no-whinges-content {
    text-align: center;
    color: #888;
    max-width: 400px;
}

.no-whinges-content i {
    font-size: 4rem;
    color: #555;
}

.no-whinges-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 600;
}

.no-whinges-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.compose-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.compose-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.compose-btn i {
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive design */
@media (max-width: 600px) {
    .main-content {
        padding: 0;
    }

    .composer,
    .thread {
        padding: 12px;
    }

    .message-content {
        gap: 8px;
    }

    .message-content .avatar {
        width: 32px;
        height: 32px;
    }
}

.tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--surface);
    color: var(--primary);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 100;
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, 10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Image handling */
.image-preview-container {
    position: relative;
    display: inline-block;
    margin: 8px 0;
}

.image-preview-container img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
}

.remove-image {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.remove-image:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Header navigation */
.header__nav {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 16px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.header__back {
    color: var(--primary);
    text-decoration: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.header__back:hover {
    background-color: var(--surface);
}

/* Post view */
.post {
    margin-bottom: 24px;
}

.main-thread {
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 24px;
}

.reply-thread {
    padding-left: 48px;
    position: relative;
}

.reply-thread::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--border);
}

.thread.clickable {
    cursor: pointer;
    transition: background-color 0.2s;
}

.thread.clickable:hover {
    background-color: var(--surface);
}

.thread__hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.thread__hashtag {
    background-color: var(--surface);
    color: var(--secondary);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid var(--border);
}

.thread__hashtag:hover {
    background-color: var(--border);
    color: var(--primary);
}

#container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gauge-button {
    background-color: var(--surface);
    color: var(--secondary);
    border-radius: 8px;
    padding: 8px 14px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.image-upload {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    height: 100%;
    /* optional — if your buttons have fixed height */
}

.image-upload i {
    line-height: 1;
    /* prevent icon misalignment */
}

.actionBtn,
.image-upload {
    vertical-align: middle;
    font-size: larger;
}

.actionBtn:disabled {
    color: var(--secondary);
    border-radius: 8px;
    border: 1px solid var(--border);
    padding: 8px 14px;
    cursor: not-allowed;
    opacity: 0.6;
    transition: opacity 0.2s;
}

button.delete-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
}

button.delete-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#entityDynamicInput {
    padding: 8px;
    font-size: 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background-color: var(--surface);
    color: #ffffff;
}

#dynamicInput::placeholder {
    color: #ffffff;
    opacity: 60%;
}

#entityDynamicInput::placeholder {
    color: #ffffff;
    opacity: 60%;
}

.thread:not(.reply-thread) {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.thread:not(.reply-thread):hover {
    background-color: antiquewhite;
}

.gauges {
    display: none;
}

.gauges.active {
    display: flex;
    cursor: pointer;
}

.menu-button {
    flex: 0 0 auto;
    justify-self: start;
    background-color: var(--secondary);
    color: var(--background);
    border: #333 solid 1px;
    padding: 10px 10px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    transition: background-color 0.3s ease;
    font-family: sans-serif;
}

.relation {
    color: grey;
    display: inline-flex;
    align-items: center;
    /* vertical alignment */
}

.relation::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 0.3em;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    background-image: url('/icons/link.svg');
}

.login_required {
    background: rgb(15 15 15 / 89%);
    border-radius: 12px;
    margin-bottom: 20px;
    max-height: 60vh;
    overflow: auto;
    padding: 24px;
    text-align: center;
}

.whingeScore .level-text {
    display: none;
}

.topic-nav-indicator {
    position: absolute;
    top: 10px;
    right: 50px;
    background: rgba(139, 92, 246, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    pointer-events: none;
    animation: fadeIn 0.2s ease-in;
}

.topic-nav-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topic-nav-info i {
    font-size: 14px;
}

.topic-nav-flash {
    animation: topicFlash 0.6s ease-in-out;
}

@keyframes topicFlash {

    0%,
    100% {
        box-shadow: none;
    }

    50% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
        background-color: rgba(139, 92, 246, 0.05);
    }
}

.tweet:has(.entity-label):hover {
    cursor: ew-resize;
}

/* Adviser Profile Styles */
.adviser-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 10px;
    vertical-align: middle;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.adviser-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 14px;
    color: black;
}

.adviser-info span,
.adviser-info a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.adviser-website {
    color: #1d9bf0;
    text-decoration: none;
}


/* Profile Actions */
.profile-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    margin: 0;
}

.edit-profile-btn {
    background-color: transparent;
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.edit-profile-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Modal Styles (reusing existing modal structure but adding specific form styles) */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.cancel-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.save-btn {
    background-color: var(--primary);
    color: var(--background);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
}

.save-btn:hover {
    opacity: 0.9;
}

.adviser-fields {
    border-top: 1px solid var(--border);
    margin-top: 20px;
    padding-top: 20px;
}


/* Modal Styles */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1000;
    /* Sit on top */
    left: 25%;
    top: 15%;
    width: 100%;
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.5);
    /* Black w/ opacity */
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--surface);
    margin: 10% auto;
    /* 10% from the top and centered */
    padding: 24px;
    border: 1px solid var(--border);
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: var(--primary);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary);
    text-decoration: none;
}

.modal h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 20px;
}

.entity-header {
    background: #1e3a5f;
    margin-bottom: 24px;
    padding: 24px;
}

.entity-header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.entity-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.entity-icon i {
    font-size: 32px;
    color: #ffffff;
}

.entity-info {
    flex: 1;
    min-width: 0;
}

.entity-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    word-wrap: break-word;
}

.entity-stats {
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.post-count {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.post-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .entity-header {
        border-radius: 0;
        margin-bottom: 16px;
        padding: 16px;
    }

    .entity-header-content {
        gap: 16px;
    }

    .entity-icon {
        width: 48px;
        height: 48px;
    }

    .entity-icon i {
        font-size: 24px;
    }

    .entity-title {
        font-size: 22px;
    }

    .post-count {
        font-size: 18px;
    }

    .post-label {
        font-size: 14px;
    }
}