/* AgriConnect Core plugin styles — used in single-listing views and modals. */

.ac-listing-actions {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.ac-interest-btn {
    background: var(--ac-accent, #f6a821);
    color: #0f3d2e;
    border: none;
    padding: .75rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}
.ac-interest-btn:hover { filter: brightness(1.05); }

.ac-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #1f6f43;
    color: #fff;
    padding: .75rem 1rem;
    border-radius: 10px;
    font-size: .9rem;
    box-shadow: 0 6px 24px rgba(0,0,0,.15);
    z-index: 9999;
    animation: acToastIn .3s ease-out;
}
.ac-toast--error { background: #c0392b; }
@keyframes acToastIn {
    from { transform: translateY(-10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
