/* Styling to ensure the new button aligns properly with existing elements */
.google-preferred-source-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: 15px !important; /* Space from the Published on text */
    padding: 6px 14px !important;
    border-radius: 20px !important; /* Pill shape looks nice here */
    background-color: #ffffff !important;
    color: #1a202c !important; /* Dark text for contrast against white */
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
    line-height: 1 !important;
}

.google-preferred-source-btn:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15) !important;
    color: #1a202c !important;
}

@media (max-width: 768px) {
    .google-preferred-source-btn {
        margin-top: 10px !important;
        margin-left: 0px !important; /* Move to next line cleanly if wrapping */
    }
}
