

body {
    --ib-primary-color: rgba(3, 210, 202, 1);
    --ib-btn-default-text-color: #d9d9d9;
    --ib-btn-primary-text-color: #333;
}

.entry-content.wp-block-post-content a,
.wp-block-comment-content a,
p a {
    text-decoration: none !important;
}

/* Notifications */
.my-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    min-width: 300px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.my-notification-show {
    opacity: 1;
    transform: translateX(0);
}

.my-notification-success {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    box-shadow: 0 10px 40px rgba(76, 175, 80, 0.5);
}

.my-notification-error {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: white;
    box-shadow: 0 10px 40px rgba(244, 67, 54, 0.5);
}

.available-hours__num {
    font-size: 1.6em;
    font-weight: 700;
    color: var(--ib-primary-color);
}

.ml-auto {
    margin-left: auto;
}

.ib-btn {
    display: inline-block;
    padding: 6px 16px;
    background: var(--ib-primary-color);
    color: var(--ib-btn-primary-text-color);
    border: none;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
}

.ib-shortcode-container {
    padding: 0px;
    border-radius: 8px;
}

.ib-shortcode-header {
    padding: 6px 16px;
    display: flex
}


.ib-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ib-card {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #3d3d3d;
}

.ib-card-body {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 0;
    font-size: 15px;
}

    .ib-card-body .heading {
        font-size: 20px;
        font-weight: 600;
    }



.ib-card-pill {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: auto;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: #555;
    min-width: 30px;
}

    .ib-card-pill.hours {
        text-align: end;
        font-size: 16px;
    }

    .ib-card-pill.success {
        background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    }

    .ib-card-pill.warning {
        background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    }

    .ib-card-pill.danger {
        background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    }

.ib-card-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #3d3d3d;
}

    .ib-card-footer .link {
        color: var(--ib-primary-color);
        font-size: 14px;
        text-decoration: none;
    }

/*radio*/
.ib-toggle {
    display: inline-flex;
    gap: 10px;
    padding: 10px 0px;
}

    .ib-toggle label {
        position: relative;
        display: inline-flex;
        align-items: center;
    }

    .ib-toggle input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

.ib-toggle-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    user-select: none;
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.10);
    font-size: 14px;
    line-height: 1;
    color: var(--ib-btn-default-text-color);
    transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
}

    .ib-toggle-pill:hover {
        background: rgba(255,255,255,.1);
        border-color: rgba(255,255,255,.2);
    }
/* Checked state */
.ib-toggle input:checked + .ib-toggle-pill {
    background: var(--ib-primary-color);
    border-color: var(--ib-primary-color);
    color: var(--ib-btn-primary-text-color);
    box-shadow: 0 0 0 4px rgba(99,102,241,.14);
}
/* Keyboard accessibility */
.ib-toggle input:focus-visible + .ib-toggle-pill {
    outline: none;
    box-shadow: 0 0 0 4px var(--mybookit-ring);
}
