.fallback-link {
    display: inline-block;
    padding: 14px 24px;
    background-color: #0073e6;
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.fallback-link:hover {
    background-color: #005bb5;
}

@media (max-width: 600px) {
    .fallback-link {
        width: 100%;
        text-align: center;
    }
}