/* Click Behavior Component Styles */
.svx-card .flexible-click-internal,
.svx-card .flexible-click-external,
.svx-card .flexible-click-modal,
.svx-card .flexible-click-none {
    display: block;
    width: 100%;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.svx-card .flexible-click-internal:hover,
.svx-card .flexible-click-external:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-2px);
}

.svx-card .flexible-click-modal {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font: inherit;
    color: inherit;
}

.svx-card .flexible-click-modal:hover {
    transform: translateY(-2px);
}

.svx-card .flexible-click-none {
    cursor: default;
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .svx-card .flexible-modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 15px;
    }
}
