a.action-button.highlight {
    display: inline !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

a.action-button.highlight.shiny-bound-input,
a.action-button.highlight.shiny-bound-input:link,
a.action-button.highlight.shiny-bound-input:visited,
a.action-button.highlight.shiny-bound-input:hover,
a.action-button.highlight.shiny-bound-input:active {
    display: inline !important;
    float: none !important;
    width: auto !important;
}

.fun-btn {
    border-radius: 999px !important;
    padding: 12px 22px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    border: none !important;
    box-shadow: none !important;
    transition: background-color 0.15s ease-in-out, transform 0.08s ease-in-out;
}

.fun-btn:active {
    transform: scale(0.98);
}

.fun-btn-primary {
    background-color: var(--accent-green) !important;
    color: #ffffff !important
}

.fun-btn-primary:hover,
.fun-btn-primary:focus {
    background-color: var(--accent-green-dark) !important;
    color: #ffffff !important;
}

.fun-btn-secondary {
    background-color: #ffffff !important;
    color: #1f2a10 !important;
    border: 2px solid #d2d6c6 !important;
}

.fun-btn-secondary:hover,
.fun-btn-secondary:focus {
    background-color: #f6f4ec !important;
    color: #1f2a10 !important;
}

.fun-btn i {
    font-size: 1.1em;
}

.card-actions,
.box-actions {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}


/* modal close */

.modal-footer .btn.btn-default {
    background-color: #5f6f3a;
    border-color: #5f6f3a;
    color: #ffffff;
    font-weight: 500;
    border-radius: 12px;
    padding: 0.5rem 1.25rem;
}

.modal-footer .btn.btn-default:hover {
    background-color: #4e5c2f;
    border-color: #4e5c2f;
    color: #ffffff;
}

.ps-action-btn {
    border-radius: 999px !important;
    padding: 14px 26px !important;

    font-family: 'Inter', sans-serif !important;
    font-size: 1.05rem;
    font-weight: 600;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background-color: var(--accent-green) !important;
    color: #ffffff !important;

    border: none !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);

    transition:
        background-color 0.15s ease-in-out,
        transform 0.08s ease-in-out,
        box-shadow 0.15s ease-in-out;
}

.ps-action-btn:hover,
.ps-action-btn:focus {
    background-color: var(--accent-green-dark) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.ps-action-btn:active {
    transform: scale(0.97);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.10);
}