/* Menu Item Style Pro - Frontend CSS */

/* CTA - Solid */
.misp-cta-solid>a {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.misp-cta-solid>a:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* CTA - Outline */
.misp-cta-outline>a {
    display: inline-block;
    padding: 8px 18px;
    border: 2px solid currentColor;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent !important;
    /* Override background color if set */
}

.misp-cta-outline>a:hover {
    background: currentColor !important;
    color: #fff !important;
    /* Assuming white text on hover, might need adjustment */
}