/* Reaction Button Post - Frontend Styles */
.rbp-container { 
    text-align:center; 
    padding: 25px 10px 25px 10px; 
    background:#f4f8fb; 
    border-radius:5px; 
    margin:20px 0; 
    clear:both; 
}
.rbp-flex { 
    display:flex; 
    justify-content:center; 
    gap:15px; 
    flex-wrap:wrap; 
    margin-top:15px; 
}
.rbp-item { 
    cursor:pointer; 
    min-width:100px;
    -webkit-tap-highlight-color: transparent; 
    transition: transform .2s; 
    user-select: none; 
}
.rbp-item:hover { 
    -webkit-transform: scale(1.08); 
    transform: scale(1.08); 
}
.rbp-badge { 
    background: #0e5dae; 
    color: #fff; 
    border-radius: 10px; 
    font-size: 13px; 
    padding: 4px 8px 2px 8px; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 10px; 
    min-width: 37px; 
    min-height: 18px; 
    line-height: 1;
    font-family: 'Mukta', sans-serif; 
}
.rbp-icon-box img { 
    width:48px; 
    height:48px; 
    object-fit: contain; 
    display: block; 
    margin: 0 auto; 
}
.rbp-title { 
    margin-top:15px; 
    font-weight:500; 
    font-size:16.5px; 
    color:#3d3d3d;
    font-family: 'Mukta', sans-serif; 
}
.rbp-loading { 
    opacity: 0.8; 
    animation: rbpPulse 1s infinite alternate; 
}
@keyframes rbpPulse { 
    from { opacity: 0.6; } 
    to { opacity: 1; } 
}
.rbp-tagline {
    margin: 0;
    font-size: 22px; 
    font-weight: 500; 
    color: #333;
    line-height: 1.4;
    margin-bottom:40px;
    font-family: 'Mukta', sans-serif;
}

/* मोबाइल रेस्पोन्सिभ डिजाइन */
@media only screen and (min-width: 511px) and (max-width: 650px) {
    .rbp-container { padding: 12px 10px 15px 10px; }
    .rbp-flex { gap:8px; margin-top: 10px; }
    .rbp-item { min-width: 80px;margin-bottom: 10px; }
    .rbp-icon-box img { width: 44px; height: 44px; }
    .rbp-title { font-size: 14px; margin-top: 10px; }
    .rbp-badge { 
        font-size: 12px; 
        padding: 2.5px 5px 2.5px 5px;
        min-width: 33px; 
        min-height: 16px; 
        margin-bottom: 7px;
    }
    .rbp-tagline {
        font-size: 19px;
        margin-bottom: 30px;
        margin-top: 8px;
    }
}


@media only screen and (max-width: 511px) {
.rbp-container { padding: 12px 10px 15px 10px; }
.rbp-item { min-width: 45px;margin-bottom:0px; }
.rbp-flex { row-gap: 20px; column-gap: 27px; margin-top: 10px; }
.rbp-icon-box img { width: 42px; height: 42px; }
.rbp-title { font-size: 14px; margin-top: 10px; }
.rbp-badge { 
        font-size: 12px; 
        padding: 2.5px 5px 2.5px 5px;
        min-width: 33px; 
        min-height: 16px; 
        margin-bottom: 7px;
    }
	.rbp-tagline {
        font-size: 19px;
        margin-bottom: 30px;
        margin-top: 8px;
    }
}
