.wnt-checkout-checkbox-wrapper .form-row {
    margin-bottom: 0;
}

.woocommerce-billing-fields .wnt-checkout-checkbox-wrapper label {
    display: flex;
    align-items: center;
}

/* Chat Widget Status Indicator Styles */
.wnt-online-indicator {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
}

.wnt-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

.wnt-status-dot.wnt-online {
    background-color: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.3);
}

.wnt-status-dot.wnt-offline {
    background-color: #9ca3af;
    box-shadow: 0 0 0 2px rgba(156, 163, 175, 0.3);
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}