#limbo-redirect-btn {
    margin-left: 12px;
    padding: 12px 24px;
    background-color: #2271b1;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(34, 113, 177, 0.2);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
}

#limbo-redirect-btn:hover {
    background-color: #135e96;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(34, 113, 177, 0.3);
}

#limbo-redirect-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(34, 113, 177, 0.2);
}

/* Optional: Add an icon to the button */
#limbo-redirect-btn::before {
    content: "↗";  /* Unicode external link arrow */
    margin-right: 8px;
    font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #limbo-redirect-btn {
        margin: 10px 0;
        width: 100%;
        justify-content: center;
    }
} 