/* ============================================================
   GUFFAWLY JOKE CARDS - CSS FORCE FIX (BIMBER THEME)
============================================================ */

.guffawly-joke-card {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 18px !important;
    margin: 20px 0 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06) !important;
    border: 1px solid #eee !important;
    position: relative !important;
    overflow: visible !important; /* Popup bahar dikhne ke liye */
}

.guffawly-joke-text {
    font-size: 16px !important;
    color: #333 !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
    margin-bottom: 15px !important;
}

.guffawly-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-top: 1px solid #f9f9f9 !important;
    padding-top: 12px !important;
    position: relative !important;
    overflow: visible !important;
}

.guffawly-share-wrapper {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    overflow: visible !important;
}

/* SOCIAL ICONS POPUP - FORCE BOX FIX */
.social-icons-popup {
    display: none; 
    position: absolute !important;
    bottom: 35px !important; 
    right: 0 !important;
    background: #ffffff !important;
    border: 1px solid #ddd !important;
    border-radius: 50px !important;
    padding: 8px 15px !important; /* Padding badhai gayi hai */
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
    z-index: 999999 !important; /* Sabse upar */
    
    /* Alignment Fix */
    flex-direction: row !important; /* Horizontal icons */
    display: none; /* JS/Hover control */
    gap: 12px !important;
    min-width: 160px !important; /* Box ki minimum width fix ki gayi hai */
    justify-content: center !important;
}

/* HOVER PAR DISPLAY FORCE */
.guffawly-share-wrapper:hover .social-icons-popup {
    display: flex !important;
}

/* INDIVIDUAL ICON STYLE - STANDARD CIRCLE */
.guff_icon {
    text-decoration: none !important;
    width: 32px !important;
    height: 32px !important;
    line-height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: bold !important;
    flex-shrink: 0 !important; /* Icon pichke na */
}

/* BRAND COLORS */
.fb  { background: #1877F2 !important; }
.wa  { background: #25D366 !important; }
.tw  { background: #000000 !important; }
.pin { background: #E60023 !important; }

/* Trigger and Vote text */
.share-trigger, .guffawly-vote {
    font-size: 13px !important;
    color: #777 !important;
    font-weight: 400 !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
}