/* Design stays same; fixes: spacing between button and left text + HARD clamp SVG sizes */

.group-card {
    margin-bottom: 20px;
    position: relative;
    border: 2px solid transparent;
    border-radius: 5px;
    background: #f0f8ff;
    display: flex;
    align-items: center;
    padding: 7px 10px;
    justify-content: space-between;
    overflow: hidden;
    gap: 14px; /* Fix: space between left block and button */
}

.whatsapp-card {
    animation: whatsapp-border-animation 1s infinite;
}

@keyframes whatsapp-border-animation {
    0% { border-color: transparent; }
    50% { border-color: #25d366; }
    100% { border-color: transparent; }
}

.lpwb-left-block {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lpwb-right-text {
    font-weight: bold;
    margin-left: 2px;
    font-size: 0.9rem !important;
}

/* Button */
.seoquake-nofollow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px; /* Fix: icon and text spacing inside button */
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    padding: 5px 20px;
    border-radius: 2px;
    flex-shrink: 0;
    transition: all 0.3s ease-in-out;
    color: white !important;
    background: #25d366;
    white-space: nowrap;
}

.seoquake-nofollow:hover {
    transform: scale(1.05);
}

/* Default FA icon */
.lpwb-fa-icon {
    font-size: 24px;
    color: #25d366;
    line-height: 1;
}

/* inside button */
.seoquake-nofollow .lpwb-fa-icon {
    font-size: 16px;
    color: #ffffff;
}

/* SVG HARD clamp - never oversized even if SVG is huge */
.lpwb-svg-icon {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    object-fit: contain;
    vertical-align: middle;
}

.seoquake-nofollow .lpwb-svg-icon {
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    object-fit: contain;
    vertical-align: middle;
}
