/* WhatsApp Group Card */

.group-card {
    margin-bottom: 20px;
    border: 2px solid transparent;
    border-radius: 5px;
    background: #f0f8ff;
    display: flex;
    align-items: center;
    padding: 7px;
    justify-content: space-between;
}

.whatsapp-card {
    animation: whatsapp-border-animation 1s infinite;
}

@keyframes whatsapp-border-animation {
    0% { border-color: transparent; }
    50% { border-color: #25d366; }
    100% { border-color: transparent; }
}

.seoquake-nofollow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    padding: 5px 20px;
    border-radius: 2px;
    transition: 0.3s;
    color: white !important;
    background: #25d366;
}

.seoquake-nofollow:hover {
    transform: scale(1.05);
}