/* Custom button styles for frontend and editor */
a.custom-btn {
    display: inline-block;
    background-color: transparent;
    border: solid 2px #EB1C23;
    padding: 8px 16px;
    font-weight: 700;
    text-decoration: none !important;
    cursor: pointer;
    color: #222;
    transition: all 0.3s ease;
    text-align: center;
    line-height: normal;
}

a.custom-btn:hover {
    background-color: #EB1C23;
    color: #FFF;
}