.fmfh-condition-plan-section {
    position: relative;
}

.fmfh-condition-plan-section.is-loading {
    pointer-events: none;
}

.fmfh-condition-plan-section.is-loading::after {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(0, 128, 93, 0.2);
    border-top-color: #00805d;
    border-radius: 50%;
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1000;
    animation: fmfh-spin 0.7s linear infinite;
}

.fmfh-recipe-info {
    color: inherit;
    text-decoration: none;
}

.fmfh-recipe-info > span,
.fmfh-recipe-name,
.fmfh-recipe-meta {
    display: block;
}

.fmfh-activate-btn {
    text-decoration: none;
}

.fmfh-recipe-plan-button {
    align-items: center;
    background: transparent;
    border: 1px solid #00805d;
    border-radius: 20px;
    color: #00805d;
    display: inline-flex;
    flex: 0 0 auto;
    font-family: var(--header-font);
    font-size: 12px;
    font-weight: 700;
    gap: 4px;
    line-height: 16px;
    padding: 6px 10px;
    text-decoration: none;
}

.fmfh-recipe-plan-button:hover {
    background: #00805d;
    color: #fff;
}

.fmfh-recipe-plan-button__icon {
    font-size: 20px;
    font-weight: 400;
    line-height: 12px;
}

.fmfh-save-btn.is-loading {
    align-items: center;
    background: transparent;
    border-color: transparent;
    display: flex;
    justify-content: center;
    min-height: 48px;
}

.fmfh-save-button-spinner {
    border: 3px solid rgba(0, 128, 93, 0.2);
    border-radius: 50%;
    border-top-color: #00805d;
    height: 24px;
    width: 24px;
    animation: fmfh-spin 0.7s linear infinite;
}

.fmfh-save-message {
    margin: 12px 0 0;
}

.fmfh-saved-msg--error,
.fmfh-inline-action-message {
    color: #c62828;
}

.fmfh-inline-action-message {
    font-size: 14px;
    margin: 10px 0 0;
}

@keyframes fmfh-spin {
    to {
        transform: rotate(360deg);
    }
}
