/* --- AVATAR CONTAINMENT --- */
/* Forces all main avatars to 35px regardless of original size */
.avatar-main {
    width: 35px !important;
    height: 35px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
    display: block !important;
    background: transparent !important;
}

/* Forces quoted avatars to 18px */
.avatar-xs {
    width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
    display: block !important;
}

/* --- THE HAMBURGER (MEATBALL) MENU --- */
/* Fixes the "white background" issue by forcing dark themes */
.meatball-overlay {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #1a1a1a !important;
    border: 1px solid #444 !important;
    min-width: 140px;
    z-index: 2000 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    border-radius: 4px;
    padding: 5px 0 !important;
}

/* Menu items */
.meatball-overlay .drop-item,
.meatball-overlay a {
    display: block !important;
    width: 100% !important;
    padding: 10px 15px !important;
    color: #ddd !important;
    background: transparent !important;
    text-align: left !important;
    font-size: 13px !important;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer !important;
}

/* Hover effects */
.meatball-overlay .drop-item:hover,
.meatball-overlay a:hover {
    background-color: #333 !important;
}

/* Red Hovers for Mods/Reports */
.meatball-overlay .report-link:hover {
    color: #ff4444 !important;
}

.meatball-overlay .delete-link:hover,
.meatball-overlay .perma-delete-link:hover {
    background-color: #800 !important;
    color: #fff !important;
}

/* --- ACTION ROW --- */
.status-action-row {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-top: 12px;
    border-top: 1px solid #333;
    padding-top: 10px;
}


.icon-white {
    filter: brightness(0) invert(1) !important;
}

.status-list, .feed-column {
    overflow: visible !important;
}

/* --- FIXED REPOST MENU --- */
/* --- REPOST MENU: FIXED BACKGROUND & DIRECTION --- */
.repost-menu {
    display: none;
    position: absolute !important;
    /* Forces it to open UPWARDS */
    bottom: 110% !important;
    top: auto !important;
    left: 0 !important;

    /* Forces SOLID dark background */
    background-color: #1a1a1a !important;
    border: 1px solid #444 !important;
    border-radius: 5px !important;

    /* Box shadows help separate it from the post content */
    box-shadow: 0 8px 16px rgba(0,0,0,0.8) !important;
    min-width: 130px !important;
    width: max-content !important;
    z-index: 10001 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* Ensure links inside have solid backgrounds too */
.repost-menu a {
    display: block !important;
    padding: 12px 16px !important;
    color: #ffffff !important;
    background-color: #1a1a1a !important;
    text-decoration: none !important;
    font-size: 14px !important;
    border-bottom: 1px solid #333 !important;
}

.repost-menu a:hover {
    background-color: #333 !important;
    color: #00ff00 !important;
}
        .status-action-btn { cursor: pointer; transition: color 0.2s; display: flex; align-items: center; gap: 5px; }
    .status-action-btn:hover { color: #fff !important; }
    .share-hover:hover { color: #00ff00 !important; }
    .report-hover:hover { color: #ff4444 !important; }
