/* Inline Buttons Plugin CSS */

/* Styling for the shortcode output (if used elsewhere) */
.ib-button-container {
    margin: 20px 0;
}

.ib-button-container .ib-button {
    margin: 0 5px;
    padding: 8px 12px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
}

/* Mobile-only fixed bottom menu styling using flexbox */
.ib-mobile-menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 5px 0;
    z-index: 1000;
    border-top: 1px solid #ddd;
}

.ib-mobile-menu .ib-button {
    flex: 1;
    margin: 0 2px;
    padding: 10px 5px;
    text-align: center;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* new buttons*/
.ib-desktop-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 16px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.ib-desktop-bar .ib-button {
    padding: 10px 20px;
    background-color: #0073aa;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.ib-desktop-bar .ib-button:hover {
    background-color: #005177;
}

