
.jwsAction {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background-color: var(--main-color-1);
    color: #000000;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.jwsAction:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.jwsAction:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
}

/* Disabled link */
.jwsAction.disabled {
    opacity: 0.5;
    pointer-events: none;
    transform: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.10);
}
