.agri-universal-modal {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    max-width: 320px;
    animation: slideUp 0.5s ease-out;
}

.agri-glass-panel {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #dfe1e5;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    font-family: 'Outfit', sans-serif;
}

.agri-glass-panel p {
    font-size: 16px;
    color: #202124;
    margin-bottom: 20px;
    line-height: 1.5;
}

.agri-actions {
    display: flex;
    gap: 10px;
}

.agri-btn-yes {
    flex: 1;
    background: #4285F4; /* Google Blue */
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

.agri-btn-no {
    flex: 1;
    background: #f1f3f4;
    color: #5f6368;
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
