/* --- Glassmorphic Action Buttons --- */
.vc-action-container {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Base Glass Button Style - Sharpened */
.vc-glass-btn {
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    padding: 12px 4px;
    font-weight: 800;
    font-size: 13px;
    color: #ffffff;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}

/* --- MESSAGE LAYOUT FOR EXTERNAL MODERATION --- */
.vc-message-left, .vc-message-right {
    display: flex;
    width: 100%;
    margin-bottom: 12px;
    align-items: center;
}

.vc-message-left { flex-direction: row; justify-content: flex-start; }
.vc-message-right { flex-direction: row-reverse; justify-content: flex-end; }

/* --- GLASSMORPHIC CARDS --- */
.vc-card { 
    padding: 12px 15px; 
    border-radius: 15px; 
    max-width: 85%; 
    font-size: 0.9rem; 
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
    position: relative;
}

.vc-message-left .vc-card { 
    background: rgba(241, 243, 245, 0.7); 
    border-bottom-left-radius: 4px; 
    border: 1px solid rgba(233, 236, 239, 0.5); 
    color: #333;
}

.vc-message-right .vc-card { 
    background: rgba(0, 115, 170, 0.8); 
    color: #fff; 
    border-bottom-right-radius: 4px; 
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- EXTERNAL MODERATION STACK (Outside Bubble) --- */
.vc-mod-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.4; /* Subtle until interaction */
    transition: opacity 0.2s;
}

.vc-card-wrapper:hover .vc-mod-stack {
    opacity: 1;
}

/* Tiny Black Report Button (Outside) */
.vc-report-trigger {
    background: #000;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 7px;
    padding: 2px 4px;
    border-radius: 3px;
    cursor: pointer;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
}

.vc-report-trigger:hover {
    background: #222;
    transform: scale(1.05);
}

/* Report Menu Popup Styling */
.vc-report-popup {
    position: absolute;
    z-index: 9999;
    background: #000;
    padding: 5px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.vc-report-submit {
    background: transparent;
    color: #fff;
    border: none;
    font-size: 9px;
    padding: 6px 12px;
    text-align: left;
    cursor: pointer;
    border-radius: 4px;
    white-space: nowrap;
    transition: background 0.2s;
}

.vc-report-submit:hover {
    background: rgba(255,255,255,0.15);
}

/* --- ViciDelete Waste Bin Icon Styling --- */
.vc-delete-btn {
    font-size: 16px;
    line-height: 1;
    padding: 4px;
    transition: all 0.2s ease;
    user-select: none;
    cursor: pointer;
    color: #ff4d4d;
}

.vc-delete-btn:hover {
    transform: scale(1.3);
    filter: drop-shadow(0 0 5px rgba(214, 54, 56, 0.4));
}

/* FORCE DATE REDUCTION */
.vc-date-wrap {
    font-size: 6px !important;
    font-weight: 400 !important;
    color: rgba(0,0,0,0.4) !important;
    margin-left: 6px;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}
.vc-message-right .vc-date-wrap { color: rgba(255,255,255,0.6) !important; }

/* --- ADOPTED DARKER & DEEPER ACTION BUTTONS --- */
#vc-search-btn { 
    background: linear-gradient(135deg, #004d7a 0%, #001a35 100%);
    box-shadow: 0 4px 14px rgba(0, 26, 53, 0.6), inset 0 1px 0 rgba(255,255,255,0.1);
}
#vc-search-btn:hover {
    background: linear-gradient(135deg, #005691 0%, #00254d 100%);
    box-shadow: 0 6px 20px rgba(0, 26, 53, 0.8);
}
#vc-search-btn:active {
    background: #001124;
    transform: scale(0.92);
}

#vc-post-btn { 
    background: linear-gradient(135deg, #005a41 0%, #00291d 100%);
    box-shadow: 0 4px 14px rgba(0, 41, 29, 0.6), inset 0 1px 0 rgba(255,255,255,0.1);
}
#vc-post-btn:hover {
    background: linear-gradient(135deg, #006e50 0%, #003627 100%);
    box-shadow: 0 6px 20px rgba(0, 41, 29, 0.8);
}
#vc-post-btn:active {
    background: #001a12;
    transform: scale(0.92);
}